-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathddsl.cabal
93 lines (91 loc) · 2.11 KB
/
ddsl.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: 2.4
name: super-v
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Nicholas V. Lewchenko
maintainer: [email protected]
library
exposed-modules:
SuperV,
SuperV.Example.Election,
SuperV.Example.LogConsensus
other-modules:
Ddsl,
Ddsl.Atom,
Ddsl.Base,
Ddsl.Base.Tuple,
Ddsl.Base.Bool,
Ddsl.Internal,
Ddsl.Symbolic,
Ddsl.Term,
Ddsl.TH,
Ddsl.Ext.Accum,
Ddsl.Ext.Accum.Class,
Ddsl.Ext.Accum.Example,
Ddsl.Ext.Accum.TH,
Ddsl.Ext.CardSet,
Ddsl.Ext.CardSet.Example,
Ddsl.Ext.CardSet.Internal,
Ddsl.Ext.ForallCheck,
Ddsl.Ext.List,
Ddsl.Ext.List.Class,
Ddsl.Ext.List.Example,
Ddsl.Ext.List.TH,
Ddsl.Ext.Map,
Ddsl.Ext.Map.Class,
Ddsl.Ext.Map.Example,
Ddsl.Ext.Map.Filter,
Ddsl.Ext.Map.TH,
Ddsl.Ext.Nat,
Ddsl.Ext.Nat.Class,
Ddsl.Ext.Nat.Example,
Ddsl.Ext.Nat.TH,
Ddsl.Ext.Set,
Ddsl.Ext.Set.Class,
Ddsl.Ext.Set.Example,
Ddsl.Ext.Set.Filter,
Ddsl.Ext.Set.TH,
Ddsl.Ext.Tree,
Ddsl.Ext.Tree.Class,
Ddsl.Ext.Tree.TH,
Ddsl.Prelude
build-depends:
base >=4.17.2 && <4.19,
sbv >=10.7 && <10.13,
containers,
store,
syb,
time,
template-haskell
hs-source-dirs: lib
default-language: Haskell2010
executable ferry
hs-source-dirs: ferry
default-language: Haskell2010
main-is: Main.hs
other-modules:
Config,
Config.New,
ClientComm,
ClientComm.Protocol,
ClientComm.Transport,
State,
AppState
build-depends:
aeson,
base >=4.17.2 && <4.19,
ddsl,
ccmsg >=1.0 && <1.1,
bytestring,
cereal,
mtl,
microlens-platform,
network-simple,
containers,
random,
stm,
store,
text,
time,
unix,