-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
53 lines (53 loc) · 1.31 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
name: sparse-merkle-trees
version: 0.2.0.0
github: "tochicool/sparse-merkle-trees"
license: BSD3
author: "Tochi Obudulu"
maintainer: "[email protected]"
copyright: "Copyright (c) 2022 Tochi Obudulu"
extra-source-files:
- README.md
- CHANGELOG.md
synopsis: Sparse Merkle trees with proofs of inclusion and exclusion
category: Cryptography,Data Structures
description: Please see the README on GitHub at <https://github.com/tochicool/sparse-merkle-trees#readme>
dependencies:
- base >= 4.7 && < 5
- bytestring >= 0.10 && < 0.12
- containers >= 0.6 && < 0.7
- cryptonite >= 0.25 && < 0.31
- memory >= 0.14 && < 0.18
ghc-options:
- -Wall
library:
source-dirs: src
exposed-modules:
- Crypto.Hash.CompactSparseMerkleTree
tests:
sparse-merkle-trees-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- sparse-merkle-trees
- tasty
- tasty-hunit
- tasty-smallcheck
- tasty-quickcheck
- smallcheck
benchmarks:
sparse-merkle-trees-bench:
main: Main.hs
source-dirs: bench
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- sparse-merkle-trees
- criterion
- deepseq
- QuickCheck