rel8/rel8.cabal

67 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2020-10-11 15:42:00 +03:00
cabal-version: 2.0
2020-01-17 16:27:35 +03:00
name: rel8
version: 0.1.0.0
2020-01-18 21:35:03 +03:00
synopsis: Hey! Hey! Can u rel8?
2020-10-11 15:48:40 +03:00
license: BSD3
2020-01-17 16:27:35 +03:00
license-file: LICENSE
author: Oliver Charles
maintainer: ollie@ocharles.org.uk
build-type: Simple
library
2020-01-17 18:27:14 +03:00
build-depends:
2020-10-11 15:42:00 +03:00
aeson
2020-10-13 10:39:47 +03:00
, base ^>=4.12 || ^>= 4.13 || ^>= 4.14
, bytestring
2020-06-19 12:59:36 +03:00
, case-insensitive
2021-03-03 12:58:58 +03:00
, contravariant
2020-10-13 10:39:35 +03:00
, opaleye ^>= 0.7.1.0
2020-01-17 21:09:34 +03:00
, postgresql-simple
2020-06-19 12:59:36 +03:00
, scientific
2020-01-18 23:05:23 +03:00
, text
2020-06-19 12:59:36 +03:00
, time
, uuid
2020-01-17 18:27:14 +03:00
default-language:
Haskell2010
ghc-options:
2021-03-02 19:44:23 +03:00
-Weverything -Wno-unsafe -Wno-safe -Wno-missing-safe-haskell-mode
-Wno-missing-import-lists -Wno-prepositive-qualified-module
-Wno-deprecations -Wno-monomorphism-restriction
-Wno-missing-local-signatures
2020-01-17 18:27:14 +03:00
hs-source-dirs:
src
exposed-modules:
2020-01-18 21:35:36 +03:00
Rel8
Rel8.Text
2021-03-04 17:26:57 +03:00
Rel8.Time
2020-01-17 16:27:35 +03:00
other-modules:
2020-01-20 18:33:49 +03:00
Rel8.Optimize
2020-06-12 20:03:52 +03:00
test-suite tests
type:
exitcode-stdio-1.0
build-depends:
2020-10-11 15:42:00 +03:00
base
2020-06-19 12:59:36 +03:00
, bytestring
, case-insensitive
2020-06-19 14:49:09 +03:00
, containers
2020-06-12 20:03:52 +03:00
, hedgehog ^>= 1.0.2
2020-06-14 14:14:24 +03:00
, lifted-base ^>= 0.2.3.12
2020-06-12 20:03:52 +03:00
, monad-control ^>= 1.0.2.3
, postgresql-simple ^>= 0.6.2
, rel8
2020-06-19 12:59:36 +03:00
, scientific
2020-06-12 20:03:52 +03:00
, tasty ^>= 1.2.3
, tasty-hedgehog ^>= 1.0.0.2
2020-06-19 12:59:36 +03:00
, text
, time
2020-06-12 20:03:52 +03:00
, tmp-postgres ^>= 1.34.1.0
2020-06-19 12:59:36 +03:00
, uuid
2020-06-12 20:03:52 +03:00
main-is:
Main.hs
hs-source-dirs:
tests
default-language:
Haskell2010