packages feed

packed-dawg 0.2.0.4 → 0.2.0.5

raw patch · 2 files changed

+14/−15 lines, 2 filesdep ~basedep ~criteriondep ~deepseqPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, criterion, deepseq, mtl, unordered-containers

API changes (from Hackage documentation)

Files

Benchmarks.hs view
@@ -1,9 +1,9 @@ import Criterion.Main-import Criterion.Config+import Criterion.Types import Data.DAWG.Packed import Paths_packed_dawg -test =  defaultMainWith (defaultConfig  {cfgSamples = ljust 5}) (return())+test =  defaultMainWith (defaultConfig {timeLimit = 10})   main = do     dictPath <- getDataFileName "TWL06.txt"
packed-dawg.cabal view
@@ -1,7 +1,7 @@   name:                packed-dawg-version:             0.2.0.4+version:             0.2.0.5 synopsis:            Generation and traversal of highly compressed directed acyclic word graphs.  description:         Generation and traversal of highly compressed directed acyclic word graphs. license:             BSD3@@ -19,26 +19,25 @@  library   exposed-modules:      Data.DAWG.Packed      -  build-depends:        base >= 4.6.0 && < 4.8.0, vector ==0.10.*, mtl ==2.1.*, -                        vector-binary-instances ==0.2.1.*, binary ==0.7.*, deepseq==1.3.*, unordered-containers==0.2.*+  build-depends:        base >= 4.6.0 && <= 4.9, vector == 0.10.*, mtl >=2.1, +                        vector-binary-instances == 0.2.1.*, binary == 0.7.*, deepseq>=1.3, unordered-containers >= 0.2  test-suite test-    main-is:            Tests.hs-    type:               exitcode-stdio-1.0--    Build-depends:      base >= 4.6.0 && < 4.8.0, vector ==0.10.*, mtl ==2.1.*, -                        vector-binary-instances ==0.2.1.*, binary ==0.7.*, deepseq==1.3.*, unordered-containers==0.2.*,+  main-is:            Tests.hs+  type:               exitcode-stdio-1.0 -                        QuickCheck >= 2.5, HUnit >= 1.2, tasty >= 0.3, tasty-quickcheck >= 0.3, tasty-hunit >= 0.2+  build-depends:      base >= 4.6.0 && <= 4.9, vector == 0.10.*, mtl >=2.1, +                      vector-binary-instances == 0.2.1.*, binary == 0.7.*, deepseq>=1.3, unordered-containers >= 0.2,+                      QuickCheck >= 2.5, HUnit >= 1.2, tasty >= 0.3, tasty-quickcheck >= 0.3, tasty-hunit >= 0.2 -    ghc-options:        -O2 -rtsopts+  ghc-options:        -O2 -rtsopts  benchmark bench-dawg-gen     main-is:            Benchmarks.hs-    Build-depends:      base >= 4.6.0 && < 4.8.0, vector ==0.10.*, mtl ==2.1.*, -                        vector-binary-instances ==0.2.1.*, binary ==0.7.*, deepseq==1.3.*, unordered-containers==0.2.*,+    Build-depends:      base >= 4.6.0 && <= 4.9, vector == 0.10.*, mtl >=2.1, +                        vector-binary-instances == 0.2.1.*, binary == 0.7.*, deepseq>=1.3, unordered-containers >= 0.2, -                        criterion >= 0.8+                        criterion >= 1.0      ghc-options:        -O2 -rtsopts     type:               exitcode-stdio-1.0