forked from IntersectMBO/cardano-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardano-node-chairman.cabal
93 lines (80 loc) · 3.22 KB
/
cardano-node-chairman.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
cabal-version: 3.0
name: cardano-node-chairman
version: 10.0.1
synopsis: The cardano full node
description: The cardano full node.
category: Cardano,
Test,
copyright: 2020-2023 Input Output Global Inc (IOG), 2023-2024 Intersect.
author: IOHK
maintainer: [email protected]
license: Apache-2.0
license-files: LICENSE
NOTICE
build-type: Simple
common project-config
default-language: Haskell2010
build-depends: base >= 4.14 && < 5
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wno-unticked-promoted-constructors
-Wpartial-fields
-Wredundant-constraints
-Wunused-packages
executable cardano-node-chairman
import: project-config
hs-source-dirs: app
main-is: cardano-node-chairman.hs
other-modules: Cardano.Chairman
Cardano.Chairman.Commands
Cardano.Chairman.Commands.Version
Cardano.Chairman.Commands.Run
other-modules: Paths_cardano_node_chairman
autogen-modules: Paths_cardano_node_chairman
ghc-options: -threaded
-rtsopts
"-with-rtsopts=-T"
build-depends: cardano-api
, cardano-crypto-class
, cardano-git-rev ^>= 0.2.2
, cardano-node ^>= 10.1.1
, cardano-prelude
, containers
, contra-tracer
, io-classes
, optparse-applicative-fork
, ouroboros-consensus
, ouroboros-consensus-cardano
, ouroboros-network-api
, ouroboros-network-protocols
, strict-stm
, si-timers
, text
, time
test-suite chairman-tests
import: project-config
hs-source-dirs: test
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends: , cardano-api
, cardano-testnet
, cardano-crypto-class ^>= 2.1.2
, data-default-class
, filepath
, hedgehog
, hedgehog-extras ^>= 0.6.4
, network
, process
, random
, resourcet
, tasty
, unliftio
other-modules: Spec.Chairman.Chairman
Spec.Chairman.Cardano
Spec.Network
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -T"
build-tool-depends: cardano-node:cardano-node
, cardano-cli:cardano-cli ^>= 10.1
, cardano-node-chairman:cardano-node-chairman