-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
57 lines (51 loc) · 1.82 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[workspace.metadata.crane]
name = "bonsol"
[workspace]
members = [
"iop",
"onchain/bonsol",
"onchain/interface",
"onchain/example-program-on-bonsol",
"node",
"schemas-rust",
"cli",
"sdk",
"prover",
"tester",
]
resolver = "2"
# Only necessary for nix cargo workspace artifacts to build without warnings.
# The actual crate derivations build using their individual manifest version.
package.version = "0.2.1"
[workspace.dependencies]
solana-sdk = "=1.18.22"
thiserror = "1.0.57"
flatbuffers = "24.3.25"
anyhow = "1.0.40"
solana-program = "=1.18.22"
solana-program-test = "=1.18.22"
solana-rpc-client = "=1.18.22"
solana-rpc-client-api = "=1.18.22"
solana-pubsub-client = "=1.18.22"
solana-transaction-status = "=1.18.22"
solana-cli-config = "=1.18.22"
yellowstone-grpc-client = "=1.15.4"
yellowstone-grpc-proto = "=1.14.2"
risc0-zkvm = { git = "https://github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix", features = [
"prove",
], default-features = false }
risc0-core = { git = "https://github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix" }
risc0-zkp = { git = "https://github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix" }
risc0-groth16 = { git = "https://github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix" }
risc0-binfmt = { git = "https://github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix" }
risc0-circuit-recursion = { git = "https://github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix" }
risc0-sys = { git = "https:m//github.com/anagrambuild/risc0", branch = "v1.0.1-bonsai-fix" }
tokio-test = "0.4.3"
bonsol-interface = { path = "./onchain/interface" }
bonsol-schema = { path = "./schemas-rust" }
bonsol-cli = { path = "./cli" }
bonsol-sdk = { path = "./sdk" }
[workspace.lints.clippy]
clone_on_ref_ptr = "deny"
missing_const_for_fn = "deny"
trivially_copy_pass_by_ref = "deny"