-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
46 lines (40 loc) · 1.11 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
[package]
name = "risc0-solana"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0-solana"
[lib]
path = "src/lib.rs"
[workspace]
resolver = "2"
members = [
"examples/hello_example/host",
"examples/hello_example/methods",
"examples/hello_example/program",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0-solana"
# Patch zerorize, see: https://github.com/solana-labs/solana/issues/26688
[patch.crates-io]
curve25519-dalek = { git = "https://github.com/ivs/curve25519-dalek", branch = "rustls-dep-hell" }
[dependencies]
anyhow = "1.0.86"
ark-bn254 = "0.4.0"
ark-serialize = "0.4.2"
borsh = "1.5.1"
hex = "0.4.3"
num-bigint = "0.4.6"
num-traits = "0.2.19"
risc0-zkp = { version = "1.1.1", default-features = false }
serde = { version = "1.0.204", features = ["derive"] }
solana-program = "=1.18.20"
[dev-dependencies]
risc0-zkvm = { version = "1.1.1", default-features = false }
serde_json = "1.0.120"
arrayvec = "0.7.4"