anza-cryptography-source/experimental/ed25519-pokos/Cargo.toml
Sam Kim 09198923bb
Add workspace.package information and do minor clean-up (#14)
* remove README.md in the syscall directory

* use workspace dependency in `bls12-381`

* add `workspace.package` information

* use 2021 edition for bls12-381

* inherit workspace.package for `ed25519-pokos`

* cargo fmt
2026-04-26 10:11:05 +09:00

27 lines
718 B
TOML

[package]
name = "ed25519-pokos"
version = "0.1.0"
edition = "2024"
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
[dependencies]
bincode.workspace = true
curve25519.workspace = true
p3-air = "0.4.2"
p3-challenger = "0.4.2"
p3-commit = "0.4.2"
p3-dft = { version = "0.4.2", features = ["parallel"] }
p3-field = "0.4.2"
p3-fri = "0.4.2"
p3-keccak = "0.4.2"
p3-koala-bear = "0.4.2"
p3-matrix = "0.4.2"
p3-merkle-tree = "0.4.2"
p3-symmetric = "0.4.2"
p3-uni-stark = { version = "0.4.2", features = ["parallel"] }
rand = { version = "0.9", features = ["small_rng"] }
serde = { version = "1.0", features = ["derive"] }
sha2.workspace = true