forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.02 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
[package]
name = "solana-zk-token-sdk"
description = "Solana Zk Token SDK"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana"
version = "1.10.2"
license = "Apache-2.0"
edition = "2021"
[dependencies]
base64 = "0.13"
bytemuck = { version = "1.8.0", features = ["derive"] }
num-derive = "0.3"
num-traits = "0.2"
solana-program = { path = "../sdk/program", version = "=1.10.2" }
[target.'cfg(not(target_arch = "bpf"))'.dependencies]
aes-gcm-siv = "0.10.3"
arrayref = "0.3.6"
bincode = "1"
byteorder = "1"
cipher = "0.4"
curve25519-dalek = { version = "3.2.1", features = ["serde"]}
getrandom = { version = "0.1", features = ["dummy"] }
lazy_static = "1.4.0"
merlin = "3"
rand = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha3 = "0.9"
solana-sdk = { path = "../sdk", version = "=1.10.2" }
subtle = "2"
thiserror = "1"
zeroize = { version = "1.3", default-features = false, features = ["zeroize_derive"] }
[lib]
crate-type = ["cdylib", "rlib"]