name: b-tree version: 0.1.1 synopsis: Immutable disk-based B* trees description: Immutable disk-based B* trees homepage: http://github.com/bgamari/b-tree license: BSD3 license-file: LICENSE author: Ben Gamari maintainer: bgamari.foss@gmail.com -- copyright: category: Data build-type: Simple -- extra-source-files: cabal-version: >=1.10 source-repository head type: git location: git@github.com:bgamari/b-tree library exposed-modules: BTree other-modules: BTree.Types, BTree.Merge, BTree.Builder, BTree.Lookup, BTree.Walk, BTree.BinaryFile, BTree.BinaryList, BTree.BuildUnordered other-extensions: DeriveGeneric, FlexibleContexts, TemplateHaskell, UndecidableInstances, StandaloneDeriving, BangPatterns, GeneralizedNewtypeDeriving build-depends: base >=4.6 && <4.8, mtl >=2.0 && <3.0, pipes >=4.1 && <4.2, pipes-interleave >= 0.1 && <1.0, bytestring >=0.10 && <0.11, binary >=0.7 && <0.8, transformers >=0.3 && <0.5, lens >=3.10 && <4.8, containers >=0.5 && <0.6, vector >=0.10 && <0.11, errors >=1.4 && <1.5, filepath >=1.3 && <1.4, directory >=1.2 && <1.3, mmap >=0.5 && <0.6 default-language: Haskell2010 ghc-options: -Wall test-suite btree-quickcheck type: exitcode-stdio-1.0 main-is: QuickCheck.hs hs-source-dirs: tests build-depends: base >=4.6 && <4.8, containers, pipes, binary, b-tree, QuickCheck benchmark btree-benchmark type: exitcode-stdio-1.0 main-is: Benchmark.hs build-depends: base >=4.6 && <4.8, mtl >=2.0 && <3.0, criterion >=0.8 && <0.10, pipes >=4.1 && <4.2, pipes-interleave >= 0.1 && <1.0, bytestring >=0.10 && <0.11, binary >=0.7 && <0.8, transformers >=0.3 && <0.5, lens >=3.10 && <4.3, containers >=0.5 && <0.6, vector >=0.10 && <0.11, errors >=1.4 && <1.5, mmap >=0.5 && <0.6 default-language: Haskell2010