-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathipld.cabal
95 lines (90 loc) · 1.94 KB
/
ipld.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: ipld
version: 0.1.0.0
synopsis: InterPlanetary Linked Data
description:
An implementation of IPLD (InterPlanetary Linked Data) in Haskell.
.
See <https://github.com/ipld/ipld IPLD> for the spec this implemements.
license: BSD3
license-file: LICENSE
author: Joel Burget
maintainer: [email protected]
copyright: Copyright (c) 2017 Joel Burget
category: Network
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
tested-with: GHC == 7.10.3, GHC == 8.0.2
library
exposed-modules:
Network.IPLD
Network.IPLD.Example
Network.IPLD.Lens
Network.IPLD.Client
other-modules:
Network.IPLD.Internal
Network.IPLD.Cid
Network.IPLD.Class
Network.IPLD.Patterns
build-depends:
base >= 4.8 && <4.11,
unordered-containers,
vector,
text,
attoparsec,
cborg == 0.1.*,
bytestring,
byteable,
cryptonite,
text-format,
base16-bytestring,
base58-bytestring,
memory,
lens,
mtl,
hashable,
aeson,
scientific,
turtle,
foldl
hs-source-dirs: src
default-language: Haskell2010
test-suite unit-tests
type : exitcode-stdio-1.0
hs-source-dirs : tests
main-is : UnitTest.hs
build-depends :
base,
unordered-containers,
vector,
text,
attoparsec,
cborg == 0.1.*,
lens,
bytestring,
base16-bytestring,
ipld,
tasty,
tasty-hunit
default-language : Haskell2010
test-suite property-tests
type : exitcode-stdio-1.0
hs-source-dirs : tests
main-is : HedgehogTest.hs
build-depends :
base,
unordered-containers,
vector,
text,
attoparsec,
cborg == 0.1.*,
ipld,
bytestring,
scientific,
aeson,
hedgehog == 0.5,
containers,
turtle,
aeson,
foldl
default-language : Haskell2010