summaryrefslogtreecommitdiff
path: root/conftrack.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'conftrack.cabal')
-rw-r--r--conftrack.cabal16
1 files changed, 13 insertions, 3 deletions
diff --git a/conftrack.cabal b/conftrack.cabal
index 256fb7f..1a086e1 100644
--- a/conftrack.cabal
+++ b/conftrack.cabal
@@ -21,13 +21,20 @@ library
exposed-modules: Conftrack
, Conftrack.Value
, Conftrack.Source
+ , Conftrack.Source.Trivial
+ , Conftrack.Source.Aeson
-- other-modules:
-- other-extensions:
- build-depends: base ^>=4.17.2.1
+ build-depends: base ^>=4.18
, text
+ , bytestring
, containers
, mtl
, transformers
+ , aeson >= 2.0
+ , scientific
+ , filepath >= 1.4.100
+ , file-io
hs-source-dirs: src
default-language: GHC2021
@@ -40,7 +47,10 @@ test-suite conftrack-test
hs-source-dirs: test
main-is: Main.hs
build-depends:
- base ^>=4.17.2.1,
+ base ^>=4.18,
conftrack,
containers,
- text
+ text,
+ aeson,
+ QuickCheck,
+ quickcheck-instances