diff options
author | stuebinm | 2024-06-06 18:26:42 +0200 |
---|---|---|
committer | stuebinm | 2024-06-06 18:26:42 +0200 |
commit | 4321bb0b5b90c0f92217ccd07a67f17fce44b388 (patch) | |
tree | 5fbfd686f329b943d8d6462b9191a6a738a2770c /conftrack.cabal | |
parent | d1446a8435a3cf06371eb6d4ebe25d6491612f4d (diff) |
nested values, tests, and aeson
Diffstat (limited to '')
-rw-r--r-- | conftrack.cabal | 16 |
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 |