-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedges.cabal
More file actions
77 lines (75 loc) · 3.3 KB
/
edges.cabal
File metadata and controls
77 lines (75 loc) · 3.3 KB
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
70
71
72
73
74
75
76
77
name: edges
version: 0.12.0.1
category: Graphs
synopsis: Tools for efficient immutable graphs
description: A set of tools for constructing immutable graphs which are both memory and performance-efficient.
homepage: https://github.com/metrix-ai/edges
bug-reports: https://github.com/metrix-ai/edges/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
copyright: (c) 2018, Metrix.AI
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: library
default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, OverloadedLists, PatternGuards, PatternSynonyms, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedTuples
default-language: Haskell2010
exposed-modules:
Edges.Data
Edges.Folds
Edges.NodeCounting
Edges.Potoki.Produces
Edges.Potoki.Transforms
Edges.IO
Edges.Gens
other-modules:
Edges.Functions
Edges.Functions.Folds
Edges.Instances
Edges.Instances.Cereal
Edges.Cereal.Get
Edges.Cereal.Put
Edges.Prelude
Edges.Types
build-depends:
base >=4.7 && <5,
cereal >=0.5.5 && <0.6,
cereal-data-dword >=0.1.1 && <0.2,
cereal-vector >=0.2.0.1 && <0.3,
contravariant >=1.4 && <2,
data-dword >=0.3.1.2 && <0.4,
deepseq >=1.4 && <2,
deferred-folds >=0.9 && <0.10,
foldl >=1.4.2 && <2,
hashable >=1.2 && <2,
monad-par >=0.3.4.8 && <0.4,
pointed >=5 && <6,
potoki >=2.1.2 && <2.2,
potoki-cereal >=0.3 && <0.4,
primitive >=0.6.4 && <0.7,
primitive-extras >=0.7 && <0.8,
profunctors >=5 && <6,
QuickCheck >=2.8.1 && <3,
semigroupoids >=5.2 && <6,
text >=1 && <2,
unordered-containers >=0.2 && <0.3,
vector >=0.12 && <0.13,
vector-th-unbox >=0.2.1.6 && <0.3
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, OverloadedLists, PatternGuards, PatternSynonyms, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedTuples
default-language: Haskell2010
build-depends:
cereal,
edges,
foldl,
QuickCheck >=2.8.1 && <3,
quickcheck-instances >=0.3.11 && <0.4,
rerebase >=1.1 && <2,
tasty >=1.0.1 && <1.2,
tasty-hunit >=0.10 && <0.11,
tasty-quickcheck >=0.10 && <0.11