summaryrefslogtreecommitdiff
path: root/erebos.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'erebos.cabal')
-rw-r--r--erebos.cabal25
1 files changed, 23 insertions, 2 deletions
diff --git a/erebos.cabal b/erebos.cabal
index 7e82bcb..e22b5bc 100644
--- a/erebos.cabal
+++ b/erebos.cabal
@@ -17,8 +17,29 @@ cabal-version: >=1.10
executable erebos
main-is: Main.hs
- -- other-modules:
+ other-modules: Storage
+
+ extensions: FlexibleContexts,
+ FlexibleInstances,
+ LambdaCase,
+ TupleSections
+
-- other-extensions:
- build-depends: base >=4.12 && <4.13
+ build-depends: aeson >=1.4 && <1.5,
+ base >=4.12 && <4.13,
+ bytestring >=0.10 && <0.11,
+ cereal >= 0.5 && <0.6,
+ containers >= 0.6 && <0.7,
+ crypto-api >= 0.13 && <0.14,
+ directory >= 1.3 && <1.4,
+ filepath >=1.4 && <1.5,
+ mime >= 0.4 && < 0.5,
+ mtl >=2.2 && <2.3,
+ skein >= 1.0 && <1.1,
+ tagged >= 0.8 && <0.9,
+ text >= 1.2 && <1.3,
+ time >= 1.8 && <1.9,
+ unix >=2.7 && <2.8,
+ zlib >=0.6 && <0.7
hs-source-dirs: src
default-language: Haskell2010