mirror of
https://github.com/saymrwulf/anza-cryptography-source.git
synced 2026-09-04 20:24:04 +00:00
* 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
27 lines
718 B
TOML
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
|