-
Notifications
You must be signed in to change notification settings - Fork 156
/
byron-spec-chain.cabal
66 lines (60 loc) · 1.9 KB
/
byron-spec-chain.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
cabal-version: 3.0
name: byron-spec-chain
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 the Cardano blockchain
category: Testing
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules:
Byron.Spec.Chain.STS.Block
Byron.Spec.Chain.STS.Rule.BBody
Byron.Spec.Chain.STS.Rule.Bupi
Byron.Spec.Chain.STS.Rule.Chain
Byron.Spec.Chain.STS.Rule.Epoch
Byron.Spec.Chain.STS.Rule.Pbft
Byron.Spec.Chain.STS.Rule.SigCnt
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages
build-depends:
base >=4.14 && <5,
bimap >=0.4 && <0.6,
bytestring,
containers,
byron-spec-ledger >=1.0,
hashable,
hedgehog >=1.0.4,
microlens,
microlens-th,
small-steps:{small-steps, testlib} >=1.1
test-suite chain-rules-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Test.Byron.Spec.Chain.STS.Properties
Test.Byron.AbstractSize.Properties
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages
-rtsopts "-with-rtsopts=-K4m -M300m"
build-depends:
base,
containers,
data-ordlist,
hedgehog,
microlens,
tasty,
tasty-hedgehog,
tasty-hunit,
byron-spec-chain,
byron-spec-ledger >=1.0,
small-steps:{small-steps, testlib} >=1.1