name: btree version: 0.2 synopsis: B-Tree on the compact heap -- description: homepage: https://github.com/andrewthad/b-plus-tree#readme license: BSD3 license-file: LICENSE author: Andrew Martin maintainer: andrew.thaddeus@gmail.com copyright: 2017 Andrew Martin category: Web build-type: Simple extra-source-files: README.md cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: BTree BTree.Linear -- BTree.Generic BTree.Array BTree.Compact BTree.Contractible build-depends: base >= 4.10 && < 4.11 , ghc-prim >= 0.5 && < 0.6 , primitive >= 0.6.2 && < 0.7 , prim-array >= 0.2 && < 0.3 , compact-mutable >= 0.1 && < 0.2 default-language: Haskell2010 test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , btree , prim-array , tasty , tasty-smallcheck , tasty-hunit , smallcheck , containers , transformers , primitive , compact-mutable , hashable -- ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 benchmark bench type: exitcode-stdio-1.0 build-depends: base , btree , clock , hashable , ghc-prim , compact-mutable default-language: Haskell2010 hs-source-dirs: bench main-is: Main.hs source-repository head type: git location: https://github.com/andrewthad/b-plus-tree