-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (32 loc) · 958 Bytes
/
Cargo.toml
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
[workspace]
members = [
"fuel-zkvm-primitives-input-provider",
"fuel-zkvm-primitives-prover",
"fuel-zkvm-primitives-test-fixtures",
"fuel-zkvm-primitives-utils",
]
resolver = "2"
[workspace.dependencies]
anyhow = { version = "1", default-features = false }
alloy-sol-types = "0.7.7"
bincode = { version = "1.3.3", default-features = false }
fuel-core-executor = { version = "0.40.0", default-features = false, features = [
"alloc",
] }
fuel-core-storage = { version = "0.40.0", default-features = false, features = [
"alloc",
] }
fuel-core-types = { version = "0.40.0", default-features = false, features = [
"serde",
"test-helpers",
] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
serde = { version = "1", default-features = false, features = ["derive"] }
fuels = "0.66.10"
fuels-core = "0.66.10"
fuel-core = { version = "0.40.0", features = [
"rocksdb",
"wasm-executor",
"relayer",
"test-helpers",
] }