digraph-0.3.1: digraph.cabal
cabal-version: 2.4
name: digraph
version: 0.3.1
synopsis: Directed Graphs
description: Directed graphs implementation that is based on unordered-containers
homepage: https://github.com/kadena-io/digraph
bug-reports: https://github.com/kadena-io/digraph/issues
license: BSD-3-Clause
license-file: LICENSE
author: Lars Kuhtz
maintainer: lars@kadena.io
copyright: Copyright (c) 2019 - 2025, Kadena LLC
category: Data, Mathematics
tested-with:
GHC==9.12
GHC==9.10
GHC==9.8
GHC==9.6
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/kadena-io/digraph.git
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall
exposed-modules:
Data.DiGraph
Data.DiGraph.FloydWarshall
Data.DiGraph.Random
build-depends:
, base >=4.11 && <5
, containers >=0.5
, deepseq >=1.4
, hashable >=1.2
, massiv >=0.3
, mwc-random >=0.14
, streaming >=0.2
, transformers >=0.5
, unordered-containers >=0.2
test-suite digraph-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
default-language: Haskell2010
main-is: Main.hs
ghc-options:
-Wall
-threaded
-with-rtsopts=-N
other-modules:
Data.DiGraph.Test
Data.DiGraph.Random.Test
build-depends:
-- internal
, digraph
-- external
, QuickCheck >=2.11
, base >=4.11 && <5
, fgl >=5.7
, hashable >=1.2
, massiv >=0.3