@@ -29,10 +29,12 @@ library
29
29
import : base, project-config
30
30
31
31
build-depends : aeson
32
+ , ansi-terminal
32
33
, base16-bytestring
33
34
, bytestring
34
35
, cardano-api
35
36
, cardano-cli
37
+ , cardano-git-rev
36
38
, cardano-node
37
39
, containers
38
40
, directory
@@ -42,18 +44,26 @@ library
42
44
, hedgehog-extras
43
45
, http-client
44
46
, http-types
47
+ , optparse-applicative-fork
45
48
, ouroboros-network
46
49
, process
47
50
, random
48
51
, resourcet
49
52
, safe-exceptions
53
+ , stm
50
54
, text
51
55
, time
52
56
, transformers
53
57
, unordered-containers
54
58
55
59
hs-source-dirs : src
56
- exposed-modules : Test.Assert
60
+ exposed-modules : Parsers
61
+ Parsers.Babbage
62
+ Parsers.Byron
63
+ Parsers.Cardano
64
+ Parsers.Shelley
65
+ Parsers.Version
66
+ Test.Assert
57
67
Test.Base
58
68
Test.Process
59
69
Test.Runtime
@@ -62,40 +72,24 @@ library
62
72
Testnet.Byron
63
73
Testnet.Cardano
64
74
Testnet.Conf
65
- Testnet.List
75
+ Testnet.Run
66
76
Testnet.Shelley
67
77
Testnet.SubmitApi
68
78
Testnet.Utils
69
79
80
+ other-modules : Paths_cardano_testnet
81
+
82
+ autogen-modules : Paths_cardano_testnet
83
+
70
84
executable cardano-testnet
71
85
import : base, project-config
72
86
73
- hs-source-dirs : testnet
87
+ hs-source-dirs : app
74
88
75
- main-is : Main .hs
89
+ main-is : cardano-testnet .hs
76
90
77
- build-depends : ansi-terminal
78
- , cardano-git-rev
79
- , cardano-testnet
80
- , directory
81
- , filepath
82
- , hedgehog
83
- , hedgehog-extras
91
+ build-depends : cardano-testnet
84
92
, optparse-applicative-fork
85
- , resourcet
86
- , stm
87
- , text
88
-
89
- other-modules : Paths_cardano_testnet
90
- Testnet.Commands
91
- Testnet.Commands.Babbage
92
- Testnet.Commands.Byron
93
- Testnet.Commands.Cardano
94
- Testnet.Commands.Shelley
95
- Testnet.Commands.Version
96
- Testnet.Run
97
-
98
- autogen-modules : Paths_cardano_testnet
99
93
100
94
ghc-options : -threaded -rtsopts -with-rtsopts=-N -with-rtsopts=-T
101
95
0 commit comments