-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 747 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 747 Bytes
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
# Cargo workspace root.
[workspace]
members = [
"crates/zkbacktest-core",
"crates/zkbacktest-data",
"crates/zkbacktest-cli",
"crates/zkbacktest-pine",
"crates/zkbacktest-guest-io",
"crates/zkbacktest-guest-methods",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/aryaethn/zkBacktest"
authors = ["The zkBacktest Authors"]
rust-version = "1.75"
[workspace.dependencies]
winterfell = "0.13"
blake3 = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rand = "0.8"
risc0-zkvm = { version = "^3.0.5", default-features = false, features = ["std"] }
risc0-build = "^3.0.5"