2026-03-07 20:52:28 +00:00
|
|
|
[workspace]
|
2026-03-24 11:42:07 +00:00
|
|
|
members = [
|
|
|
|
|
"curve25519/curve25519-cuda",
|
2026-04-26 01:11:05 +00:00
|
|
|
"curve25519/solana-ed25519",
|
2026-04-08 14:24:32 +00:00
|
|
|
"experimental/ed25519-pokos",
|
2026-06-17 13:45:41 +00:00
|
|
|
"secp256r1",
|
2026-04-22 00:33:15 +00:00
|
|
|
"syscall/bls12-381-syscall",
|
2026-05-18 23:56:06 +00:00
|
|
|
"syscall/bn254-syscall",
|
2026-03-07 20:52:28 +00:00
|
|
|
]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
|
2026-04-26 01:11:05 +00:00
|
|
|
[workspace.package]
|
|
|
|
|
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
|
|
|
|
|
repository = "https://github.com/anza-xyz/cryptography"
|
|
|
|
|
homepage = "https://anza.xyz/"
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
rust-version = "1.89.0" # solana platform-tools rust version
|
|
|
|
|
|
2026-03-30 12:48:31 +00:00
|
|
|
[workspace.dependencies]
|
2026-05-18 23:56:06 +00:00
|
|
|
ark-bn254 = "0.5.0"
|
|
|
|
|
ark-ec = "0.5.0"
|
|
|
|
|
ark-ff = "0.5.0"
|
|
|
|
|
ark-serialize = "0.5.0"
|
2026-03-30 12:48:31 +00:00
|
|
|
bincode = "1"
|
2026-04-22 00:33:15 +00:00
|
|
|
blst = "0.3.16"
|
|
|
|
|
blstrs = "0.7.1"
|
|
|
|
|
bytemuck = "1.25.0"
|
|
|
|
|
bytemuck_derive = "1.10.2"
|
2026-03-30 12:48:31 +00:00
|
|
|
cc = "1.0"
|
|
|
|
|
cfg-if = "1"
|
2026-06-13 15:18:07 +00:00
|
|
|
criterion = { version = "0.8" }
|
2026-05-19 01:50:26 +00:00
|
|
|
color-eyre = "0.6"
|
2026-03-30 12:48:31 +00:00
|
|
|
curve25519 = { path = "curve25519/solana-ed25519", package = "solana-ed25519" }
|
|
|
|
|
curve25519-dalek-derive = "0.1.1"
|
2026-06-13 15:19:04 +00:00
|
|
|
cpufeatures = "0.3.0"
|
2026-03-30 12:48:31 +00:00
|
|
|
der = "0.7.9"
|
2026-04-23 00:23:12 +00:00
|
|
|
digest = { version = "0.11.0", default-features = false }
|
2026-03-30 12:48:31 +00:00
|
|
|
ed25519 = { version = "2.2.3", default-features = false }
|
|
|
|
|
ed25519-dalek = "2.2.0"
|
2026-04-22 00:33:15 +00:00
|
|
|
ff = { version = "0.13.0", default-features = false }
|
|
|
|
|
group = { version = "0.13.0", default-features = false }
|
2026-03-30 12:48:31 +00:00
|
|
|
hashbrown = "0.15"
|
|
|
|
|
hex = "0.4.2"
|
2026-04-22 00:33:15 +00:00
|
|
|
hex-literal = "1.1.0"
|
2026-06-17 13:45:41 +00:00
|
|
|
hmac = "0.12"
|
|
|
|
|
openssl = "0.10"
|
2026-04-22 00:33:15 +00:00
|
|
|
pairing = "0.23.0"
|
2026-06-17 13:45:41 +00:00
|
|
|
p256 = { version = "0.13", default-features = false, features = ["arithmetic", "expose-field"] }
|
2026-04-23 00:23:12 +00:00
|
|
|
pkcs8 = { version = "0.10.1" }
|
2026-05-19 01:50:26 +00:00
|
|
|
once_cell = "1.21"
|
|
|
|
|
proptest = "=1.6.0"
|
|
|
|
|
rand = "0.8"
|
|
|
|
|
rand_core = { version = "0.6", default-features = false }
|
2026-03-30 12:48:31 +00:00
|
|
|
rayon = "1.10"
|
|
|
|
|
rustc_version = "0.4.0"
|
2026-04-23 00:23:12 +00:00
|
|
|
serde = { version = "1.0", default-features = false }
|
|
|
|
|
sha2 = { version = "0.11.0", default-features = false }
|
|
|
|
|
subtle = { version = "2.6.0", default-features = false }
|
2026-06-15 22:06:17 +00:00
|
|
|
which = "8.0"
|
2026-04-23 00:23:12 +00:00
|
|
|
zeroize = { version = "1", default-features = false }
|
2026-03-31 11:46:24 +00:00
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
|
opt-level = 2
|