solana-program-library/themis/program_ristretto/Cargo.toml

29 lines
927 B
TOML

[package]
name = "spl-themis-ristretto"
version = "0.1.0"
description = "Solana Program Library THEMIS"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2018"
[features]
no-entrypoint = []
default = ["elgamal_ristretto/program"]
[dependencies]
bincode = "1.3"
borsh = "0.8"
curve25519-dalek = { package = "curve25519-dalek-ng", git = "https://github.com/garious/curve25519-dalek", rev = "fcef1fa11b3d3e89a1abf8986386ba9ae375392c", features = ["borsh"] }
elgamal_ristretto = { git = "https://github.com/garious/elgamal", rev = "892dbe115104bcb8cc26d79f9676c836ff6c018e", default-features = false }
getrandom = { version = "0.1.15", features = ["dummy"] }
num-derive = "0.3"
num-traits = "0.2"
rand = "0.8.0"
solana-program = "1.6.2"
subtle = "=2.2.3"
thiserror = "1.0"
[lib]
crate-type = ["cdylib", "lib"]