name: graph-core version: 0.2.0.0 synopsis: Fast, memory efficient and persistent graph implementation description: A small package providing a powerful and easy to use Haskell graph implementation. homepage: https://github.com/factisresearch/graph-core license: MIT license-file: LICENSE author: Stefan Wehr , David Leuschner , Niklas Baumstark, Jonathan Dimond, Alexander Thiemann maintainer: Alexander Thiemann copyright: (c) 2014 factis research GmbH category: Data build-type: Simple cabal-version: >=1.8 library exposed-modules: Data.Graph, Data.Graph.NodeManager, Data.Graph.Persistence other-modules: Data.Graph.PureCore build-depends: base >=4.6 && <4.7, hashable >=1.2 && <1.3, unordered-containers >=0.2 && <0.3, containers >=0.5 && <0.6, safe >=0.3 && <0.4, deepseq >=1.3 && <1.4, vector >=0.10 && <0.11, QuickCheck >=2.6 && <2.7, mtl >=2.1 && <2.2, safecopy >=0.8 && <0.9 hs-source-dirs: src ghc-options: -Wall -fno-warn-orphans test-suite graph-core-tests type: exitcode-stdio-1.0 hs-source-dirs: src main-is: Tests.hs other-modules: Test.NodeManager, Test.Core, Test.Persistence build-depends: base >=4.6 && <4.7, hashable >=1.2 && <1.3, unordered-containers >=0.2 && <0.3, containers >=0.5 && <0.6, safe >=0.3 && <0.4, deepseq >=1.3 && <1.4, vector >=0.10 && <0.11, QuickCheck >=2.6 && <2.7, mtl >=2.1 && <2.2, safecopy >=0.8 && <0.9, HTF >=0.11 && <0.12 ghc-options: -Wall -fno-warn-orphans source-repository head type: git location: git://github.com/factisresearch/graph-core.git