@@ -3,18 +3,19 @@ members = [
3
3
" cliquenet" ,
4
4
" metrics" ,
5
5
" multisig" ,
6
+ " robusta" ,
6
7
" sailfish" ,
7
8
" sailfish-consensus" ,
8
9
" sailfish-rbc" ,
9
10
" sailfish-types" ,
10
11
" tests" ,
11
12
" timeboost" ,
12
13
" timeboost-builder" ,
13
- " timeboost-sequencer" ,
14
14
" timeboost-crypto" ,
15
+ " timeboost-proto" ,
16
+ " timeboost-sequencer" ,
15
17
" timeboost-types" ,
16
18
" timeboost-utils" ,
17
- " timeboost-proto" ,
18
19
" yapper" ,
19
20
]
20
21
resolver = " 2"
@@ -24,11 +25,6 @@ version = "0.1.0"
24
25
edition = " 2024"
25
26
rust-version = " 1.85.0"
26
27
27
- [profile .test ]
28
- codegen-units = 16
29
- incremental = false
30
- opt-level = 3
31
-
32
28
[workspace .dependencies ]
33
29
aes-gcm = { version = " 0.10.3" }
34
30
alloy-chains = " 0.2.0"
@@ -41,12 +37,12 @@ alloy-signer-local = "1.0.5"
41
37
anyhow = " 1.0.89"
42
38
arbitrary = " 1.4.1"
43
39
arbtest = " 0.3.2"
40
+ ark-bls12-381 = " 0.5"
44
41
ark-bn254 = " 0.5"
45
42
ark-ec = " 0.5"
46
43
ark-ff = " 0.5"
47
44
ark-poly = " 0.5"
48
45
ark-secp256k1 = " 0.5"
49
- ark-bls12-381 = " 0.5"
50
46
ark-serialize = { version = " 0.5" , features = [" derive" ] }
51
47
ark-std = { version = " 0.5" , default-features = false }
52
48
arrayvec = " 0.7.6"
@@ -65,6 +61,7 @@ criterion = "0.6"
65
61
crossbeam-queue = " 0.3.11"
66
62
data-encoding = " 2.6.0"
67
63
derive_builder = " 0.20"
64
+ derive_more = { version = " 1.0.0" , features = [" full" ] }
68
65
digest = " 0.10"
69
66
dyn-clone = " 1.0.17"
70
67
ed25519-compact = " 2.1.1"
@@ -81,29 +78,40 @@ prost = "0.13.5"
81
78
quickcheck = " 1.0.3"
82
79
rand = " 0.9"
83
80
rayon = " 1.10"
81
+ reqwest = { version = " 0.12" , features = [" json" ] }
84
82
secp256k1 = { version = " 0.31.0" , features = [" global-context" , " hashes" , " rand" , " serde" ] }
85
- reqwest = { version = " 0.12" }
86
83
serde = { version = " 1" , features = [" derive" , " rc" ] }
87
84
serde_bytes = " 0.11.15"
88
85
serde_json = { version = " 1.0" }
89
86
serde_with = " 3.12.0"
90
87
sha2 = { version = " 0.10" , default-features = false }
91
88
sha3 = " 0.10.8"
89
+ smallvec = " 1.15.1"
92
90
snow = " 0.9.6"
93
91
spongefish = { git = " https://github.com/arkworks-rs/spongefish.git" , rev = " e9f7031" , features = [
94
92
" arkworks-algebra" ,
95
93
] }
96
94
thiserror = " 2.0"
97
95
tide-disco = " 0.9.3"
98
- smallvec = " 1.15.1"
99
96
tokio = { version = " 1" , default-features = false , features = [" full" ] }
100
97
tokio-stream = " 0.1.17"
98
+ tokio-tungstenite = { version = " 0.27.0" , features = [" rustls-tls-webpki-roots" , " url" ] }
101
99
tokio-util = " 0.7.15"
102
100
toml = " 0.8.19"
103
101
tonic = " 0.13.1"
104
102
tonic-build = { version = " 0.13.1" , features = [" prost" ] }
105
103
tracing = " 0.1"
106
104
tracing-subscriber = { version = " 0.3.18" , features = [" env-filter" , " json" ] }
107
105
turmoil = " 0.6.4"
106
+ url = " 2.5.4"
108
107
vbs = " 0.1"
109
108
zeroize = { version = " 1.8" , features = [" zeroize_derive" ] }
109
+
110
+ espresso-types = { git = " https://github.com/EspressoSystems/espresso-network.git" }
111
+ hotshot-query-service = { git = " https://github.com/EspressoSystems/espresso-network.git" }
112
+ hotshot-types = { git = " https://github.com/EspressoSystems/espresso-network.git" }
113
+
114
+ [profile .test ]
115
+ codegen-units = 16
116
+ incremental = false
117
+ opt-level = 3
0 commit comments