Files
solana/zk-token-sdk/Cargo.toml
dependabot[bot] 12337d8daf chore: bump curve25519-dalek from 3.2.0 to 3.2.1 (#23517)
Bumps [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) from 3.2.0 to 3.2.1.
- [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases)
- [Changelog](https://github.com/dalek-cryptography/curve25519-dalek/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dalek-cryptography/curve25519-dalek/compare/3.2.0...3.2.1)

---
updated-dependencies:
- dependency-name: curve25519-dalek
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-08 01:14:37 -07:00

38 lines
1.0 KiB
TOML

[package]
name = "solana-zk-token-sdk"
description = "Solana Zk Token SDK"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
version = "1.10.1"
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.1" }
[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.1" }
subtle = "2"
thiserror = "1"
zeroize = { version = "1.3", default-features = false, features = ["zeroize_derive"] }
[lib]
crate-type = ["cdylib", "rlib"]