-
Notifications
You must be signed in to change notification settings - Fork 155
/
byron-spec-ledger.cabal
95 lines (89 loc) · 2.29 KB
/
byron-spec-ledger.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
95
cabal-version: 3.0
name: byron-spec-ledger
version: 1.0.1.0
license: Apache-2.0
maintainer: [email protected]
author: IOHK
homepage: https://github.com/input-output-hk/cardano-legder
synopsis: Executable specification of Cardano ledger
category: Testing
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules:
Byron.Spec.Ledger.Core
Byron.Spec.Ledger.Core.Generators
Byron.Spec.Ledger.Core.Omniscient
Byron.Spec.Ledger.Delegation
Byron.Spec.Ledger.Delegation.Test
Byron.Spec.Ledger.GlobalParams
Byron.Spec.Ledger.STS.UTXO
Byron.Spec.Ledger.STS.UTXOW
Byron.Spec.Ledger.STS.UTXOWS
Byron.Spec.Ledger.UTxO
Byron.Spec.Ledger.UTxO.Generators
Byron.Spec.Ledger.Update
Byron.Spec.Ledger.Update.Generators
Byron.Spec.Ledger.Update.Test
Data.AbstractSize
Hedgehog.Gen.Double
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wunused-packages
build-depends:
Unique >=0.4.7.6,
base >=4.14 && <5,
bimap >=0.4 && <0.6,
bytestring,
cardano-crypto-class,
cardano-ledger-binary >=1.0,
containers,
cryptonite,
hashable,
hedgehog >=1.0.4,
microlens,
microlens-th,
nothunks,
small-steps:{small-steps, testlib} >=1.1,
test-suite byron-spec-ledger-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Test.Byron.Spec.Ledger.AbstractSize.Properties
Test.Byron.Spec.Ledger.Core.Generators.Properties
Test.Byron.Spec.Ledger.Delegation.Examples
Test.Byron.Spec.Ledger.Delegation.Properties
Test.Byron.Spec.Ledger.Relation.Properties
Test.Byron.Spec.Ledger.UTxO.Properties
Test.Byron.Spec.Ledger.Update.Examples
Test.Byron.Spec.Ledger.Update.Properties
default-language: Haskell2010
ghc-options:
-Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wunused-packages
-rtsopts
"-with-rtsopts=-K4m -M150m"
build-depends:
Unique,
base,
bimap,
byron-spec-ledger,
containers,
hedgehog,
microlens,
microlens-th,
small-steps:{small-steps, testlib} >=1.1,
tasty,
tasty-hedgehog,
tasty-hunit,