-
Notifications
You must be signed in to change notification settings - Fork 5
/
digraph.cabal
69 lines (65 loc) · 1.58 KB
/
digraph.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
cabal-version: 2.4
name: digraph
version: 0.3.0
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 - 2023, Kadena LLC
category: Data, Mathematics
tested-with:
GHC==9.6.1
GHC==9.4.4
GHC==9.2.4
GHC==9.0.2
GHC==8.10.7
extra-source-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