octopod/octopod-common/octopod-common.cabal
2020-12-09 18:31:07 +03:00

49 lines
1.5 KiB
Plaintext

-- Initial common.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: octopod-common
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
license-file: LICENSE
author: Typeable
maintainer: octopod@typeable.io
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
library
exposed-modules: Common.Types
, Common.Utils
, Common.Validation
-- other-modules:
-- other-extensions:
default-extensions: BlockArguments
, ConstraintKinds
, DataKinds
, DeriveFunctor
, DeriveGeneric
, DerivingVia
, DuplicateRecordFields
, FlexibleContexts
, GeneralizedNewtypeDeriving
, LambdaCase
, OverloadedStrings
, ScopedTypeVariables
, TypeApplications
, TypeOperators
build-depends: base >=4.12 && <4.13
, aeson
, bytestring
, deriving-aeson
, generic-lens
, http-api-data
, lens
, regex-tdfa
, servant
, text
hs-source-dirs: src
default-language: Haskell2010