@@ -14,6 +14,7 @@ members = [
14
14
" provers/sgx/setup" ,
15
15
" pipeline" ,
16
16
" core" ,
17
+ " task_manager" ,
17
18
]
18
19
19
20
# Always optimize; building and running the guest takes much longer without optimization.
@@ -35,6 +36,7 @@ opt-level = 3
35
36
# raiko
36
37
raiko-lib = { path = " ./lib" , features = [" std" ] }
37
38
raiko-core = { path = " ./core" }
39
+ raiko-task-manager = { path = " ./task_manager" }
38
40
39
41
# reth
40
42
reth-primitives = { git = " https://github.com/taikoxyz/taiko-reth.git" , branch = " v1.0.0-rc.2-taiko" , default-features = false , features = [" alloy-compat" , " taiko" ] }
@@ -109,6 +111,7 @@ base64-serde = "0.7.0"
109
111
base64 = " 0.21.7"
110
112
libflate = { version = " 2.0.0" }
111
113
typetag = { version = " 0.2.15" }
114
+ num_enum = " 0.7.2"
112
115
113
116
# tracing, logging
114
117
tracing = " 0.1"
@@ -135,6 +138,7 @@ tokio = { version = "^1.23", features = ["full"] }
135
138
hyper = { version = " 0.14.27" , features = [" server" ] }
136
139
reqwest = { version = " 0.11.22" , features = [" json" ] }
137
140
url = " 2.5.0"
141
+ async-trait = " 0.1.80"
138
142
139
143
# crypto
140
144
kzg = { package = " rust-kzg-zkcrypto" , git = " https://github.com/brechtpd/rust-kzg.git" , branch = " sp1-patch" , default-features = false }
@@ -156,6 +160,9 @@ anyhow = "1.0"
156
160
thiserror = " 1.0"
157
161
thiserror-no-std = " 2.0.2"
158
162
163
+ # SQLite
164
+ rusqlite = { version = " 0.31.0" , features = [" bundled" ] }
165
+
159
166
# misc
160
167
hashbrown = { version = " 0.14" , features = [" inline-more" ] }
161
168
tempfile = " 3.8"
@@ -180,4 +187,4 @@ revm = { git = "https://github.com/taikoxyz/revm.git", branch = "v36-taiko" }
180
187
revm-primitives = { git = " https://github.com/taikoxyz/revm.git" , branch = " v36-taiko" }
181
188
revm-precompile = { git = " https://github.com/taikoxyz/revm.git" , branch = " v36-taiko" }
182
189
secp256k1 = { git = " https://github.com/CeciliaZ030/rust-secp256k1" , branch = " sp1-patch" }
183
- blst = { git = " https://github.com/CeciliaZ030/blst.git" , branch = " v0.3.12-serialize" }
190
+ blst = { git = " https://github.com/CeciliaZ030/blst.git" , branch = " v0.3.12-serialize" }
0 commit comments