forked from IntersectMBO/cardano-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbyron-spec-chain.cabal
76 lines (66 loc) · 2.53 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
67
68
69
70
71
72
73
74
75
76
cabal-version: 2.2
name: byron-spec-chain
version: 0.1.0.0
synopsis: Executable specification of the Cardano blockchain
-- description:
homepage: https://github.com/input-output-hk/cardano-legder-specs
license: Apache-2.0
author: IOHK Formal Methods Team
maintainer: [email protected]
-- copyright:
category: Testing
build-type: Simple
extra-source-files: ChangeLog.md
common base
build-depends: base >= 4.12 && < 4.15
common project-config
default-language: Haskell2010
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wunused-packages
library
import: base, project-config
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
build-depends: bimap >=0.4 && <0.5
, bytestring
, containers
, byron-spec-ledger
, goblins
, hashable
, hedgehog >= 1.0.4
, microlens
, microlens-th
, small-steps
, small-steps-test
test-suite chain-rules-test
import: base, project-config
hs-source-dirs: test
main-is: Main.hs
other-modules: Test.Byron.Spec.Chain.STS.Properties
, Test.Byron.AbstractSize.Properties
type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: containers
, data-ordlist
, hedgehog >= 1.0.4
, microlens
, tasty
, tasty-hedgehog
, tasty-hunit
-- local deps
, byron-spec-chain
, byron-spec-ledger
, small-steps
, small-steps-test
-- See `byron-spec-ledger.cabal` for an explanation of the options below.
ghc-options: "-with-rtsopts=-K4m -M300m"