-
Notifications
You must be signed in to change notification settings - Fork 3
/
eths-rlp.cabal
56 lines (51 loc) · 1.5 KB
/
eths-rlp.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
name: eths-rlp
version: 0.1.0.0
synopsis: Ethereum Recursive Length Prefix Encoding
description: RLP encoding/decoding, as described in the Ethereum Yellowpaper
license: MIT
license-file: LICENSE
author: Leonid Logvinov
maintainer: logvinov.leon@gmail.com
copyright: 2016 Leonid Logvinov
category: Ethereum, Finance, Data, Contracts, Network
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
flag documentation
default: False
library
exposed-modules: Blockchain.Ethereum.RLP
build-depends:
base >= 4 && < 5,
bytestring,
binary,
binary-strict
if flag(documentation)
build-depends: hscolour == 1.20.*
hs-source-dirs: src
ghc-Options: -Wall
default-language: Haskell2010
Test-Suite doctest
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test-suite
Ghc-Options: -threaded -Wall
Main-Is: DocTests.hs
Build-Depends:
base >= 4 && < 5,
doctest
test-suite hspec
build-depends:
base,
eths-rlp,
bytestring,
hspec,
QuickCheck,
quickcheck-instances
default-language: Haskell2010
hs-source-dirs: test-suite
main-is: Spec.hs
type: exitcode-stdio-1.0
Source-Repository head
Type: git
Location: https://github.com/LogvinovLeon/RLP