-
Notifications
You must be signed in to change notification settings - Fork 0
/
merkle-log.cabal
91 lines (84 loc) · 1.95 KB
/
merkle-log.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
cabal-version: 2.4
name: merkle-log
version: 0.2.0
synopsis: Merkle Tree Logs
description: Binary Merkle Trees
homepage: https://github.com/kadena-io/merkle-log
bug-reports: https://github.com/kadena-io/merkle-log/issues
license: BSD-3-Clause
license-file: LICENSE
author: Lars Kuhtz
maintainer: Lars Kuhtz <lars@kadena.io>
copyright: Copyright (c) 2019-2023, Kadena LLC
category: Data
tested-with:
GHC==9.8
GHC==9.6
GHC==9.4
GHC==9.2
GHC==9.0
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/kadena-io/merkle-log.git
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall
exposed-modules:
Data.MerkleLog
build-depends:
, base >=4.11 && <5
, bytestring >=0.10
, crypton >=0.31
, deepseq >=1.4
, exceptions >=0.10
, memory >=0.14
, text >=1.2
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options:
-Wall
-threaded
-with-rtsopts=-N
default-language: Haskell2010
main-is: Main.hs
build-depends:
-- internal
, merkle-log
-- external
, QuickCheck >=2.11
, base >=4.11 && <5
, bytestring >=0.10
, crypton >=0.31
, deepseq >=1.4
, exceptions >=0.10
, memory >=0.14
benchmark benchmarks
type: exitcode-stdio-1.0
hs-source-dirs: bench
ghc-options:
-Wall
-threaded
-with-rtsopts=-N
default-language: Haskell2010
main-is: Main.hs
build-depends:
-- internal
, merkle-log
-- external
, QuickCheck >=2.11
, base >=4.11 && <5
, bytestring >=0.10
, criterion >=1.5
, crypton >=0.31
, cryptonite >=0.30
, deepseq >=1.4
, hash-tree >=0.0
, memory >=0.14
, random >=1.2
, transformers >= 0.6