mirror of
https://github.com/saymrwulf/anza-cryptography-source.git
synced 2026-09-04 20:24:04 +00:00
* add `bls12-381-syscall` crate * add benchmark check in the CI * cargo fmt * remove 16 pair bench since the maximum bound is set to 8
29 lines
773 B
TOML
29 lines
773 B
TOML
[package]
|
|
name = "solana-bls12-381-syscall"
|
|
description = "Solana BLS12-381 Syscall"
|
|
documentation = "https://docs.rs/solana-bls12-381-syscall"
|
|
version = "0.1.0"
|
|
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
|
|
repository = "https://github.com/anza-xyz/cryptography"
|
|
homepage = "https://anza.xyz/"
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
blst = { workspace = true }
|
|
blstrs = { workspace = true }
|
|
bytemuck = { workspace = true, features = ["min_const_generics"] }
|
|
bytemuck_derive = { workspace = true }
|
|
group = "0.13.0"
|
|
pairing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "bench_main"
|
|
harness = false
|