2021-09-29 21:45:35 -07:00
|
|
|
[package]
|
2022-01-04 20:44:07 -08:00
|
|
|
name = "solana-zk-token-sdk"
|
2023-06-02 08:08:07 -07:00
|
|
|
description = "Solana Zk Token SDK"
|
|
|
|
documentation = "https://docs.rs/solana-zk-token-sdk"
|
2023-02-23 06:01:54 -08:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2021-09-29 21:45:35 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
base64 = { workspace = true }
|
|
|
|
bytemuck = { workspace = true, features = ["derive"] }
|
|
|
|
num-derive = { workspace = true }
|
|
|
|
num-traits = { workspace = true }
|
|
|
|
solana-program = { workspace = true }
|
2021-09-29 21:45:35 -07:00
|
|
|
|
2023-05-23 17:52:59 -07:00
|
|
|
[dev-dependencies]
|
|
|
|
tiny-bip39 = { workspace = true }
|
|
|
|
|
2022-05-19 19:51:23 -07:00
|
|
|
[target.'cfg(not(target_os = "solana"))'.dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
aes-gcm-siv = { workspace = true }
|
2023-02-24 10:48:24 -08:00
|
|
|
bincode = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
byteorder = { workspace = true }
|
|
|
|
curve25519-dalek = { workspace = true, features = ["serde"] }
|
|
|
|
getrandom = { workspace = true, features = ["dummy"] }
|
|
|
|
itertools = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
merlin = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true }
|
2021-09-29 21:45:35 -07:00
|
|
|
sha3 = "0.9"
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
subtle = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
zeroize = { workspace = true, features = ["zeroize_derive"] }
|
2021-09-29 21:45:35 -07:00
|
|
|
|
2021-10-12 18:17:55 -07:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|