aboutsummaryrefslogtreecommitdiffstats
path: root/pfm.cabal
diff options
context:
space:
mode:
authorYann Herklotz Grave <git@yannherklotzgrave.com>2019-02-20 16:18:46 +0000
committerYann Herklotz Grave <git@yannherklotzgrave.com>2019-02-20 16:18:46 +0000
commita89296f3ff3b1bb2f82b28d6ece7d0ba6a98a9fe (patch)
tree8855d1c3ceb00c369b57ec8650e9a857482e4bf1 /pfm.cabal
parent492f39f0379c7a1bdea9594d519ff636cef8368a (diff)
downloadpfm-a89296f3ff3b1bb2f82b28d6ece7d0ba6a98a9fe.tar.gz
pfm-a89296f3ff3b1bb2f82b28d6ece7d0ba6a98a9fe.zip
Add Vec.hs and update library versions
Diffstat (limited to 'pfm.cabal')
-rw-r--r--pfm.cabal19
1 files changed, 10 insertions, 9 deletions
diff --git a/pfm.cabal b/pfm.cabal
index 7b18e2c..c36436f 100644
--- a/pfm.cabal
+++ b/pfm.cabal
@@ -28,12 +28,13 @@ library
default-language: Haskell2010
ghc-options: -Wall
exposed-modules: PFM
+ , PFM.Vec
build-depends: attoparsec
- , base >= 4 && < 5
- , bytestring
- , text
- , binary
- , data-binary-ieee754
+ , base >=4 && <5
+ , bytestring >=0.10 && <0.11
+ , text >=1.2 && <1.3
+ , binary >=0.8 && <0.9
+ , data-binary-ieee754 >=0.4 && <0.5
default-extensions: OverloadedStrings
executable readpfm
@@ -41,8 +42,8 @@ executable readpfm
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4 && < 5
- , pfm
- , text
- , bytestring
- , criterion
+ , pfm >=0.1 && <0.2
+ , text >=1.2 && <1.3
+ , bytestring >=0.10 && <0.11
+ , criterion >=1.5 && <1.6
default-extensions: OverloadedStrings