forked from basile-henry/hs-multiaddr
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.yaml
55 lines (51 loc) · 1.43 KB
/
package.yaml
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
name: hs-multiaddr
version: 0.1.4
github: 'MatrixAI/hs-multiaddr'
synopsis: Multiaddr Library for LibP2P
license: Apache-2.0
author: ['CMCDragonkai', 'Quoc-An Ho']
maintainer: 'roger.qiu@matrix.ai'
copyright: '(c) Matrix AI 2017'
category: Data
synopsis: Multiaddr library
description: Multiaddr is self-describing way to represent addresses that support any standard network protocol. Multiaddr has a binary packed format, and nice string representation. It is possible to encapsulate addresses within each other.
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
exposed-modules:
- Data.Multiaddr
- Data.MultiaddrPart
- Data.Multiaddr.IPFS
- Data.Multiaddr.VarInt
- Data.Multiaddr.IPv4
- Data.Multiaddr.IPv6
- Data.Multiaddr.Onion
- Data.Multiaddr.Port
- Data.Multiaddr.UnixPath
dependencies:
- hs-multihash
- bytes >= 0.15 && < 0.16
- bytestring >= 0.10 && < 0.11
- cereal >= 0.5 && < 0.6
- filepath >= 1.4 && < 1.5
- iproute >= 1.7 && < 1.8
- sandi >= 0.4 && < 0.5
tests:
hs-multiaddr-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hs-multiaddr
- hs-multihash
- bytestring >= 0.10 && < 0.11
- either-unwrap >= 1.1 && < 1.2
- hspec >= 2.4 && < 2.5
- iproute >= 1.7 && < 1.8
- sandi >= 0.4 && < 0.5