cryptix-bn254 0.1.0

A library for bn254 elliptic curve related algorithms
Documentation
[package]
name = "cryptix-bn254"
version = "0.1.0"
edition = "2021"
authors = ["m4tsuri"]
description = "A library for bn254 elliptic curve related algorithms"
documentation = "https://docs.rs/cryptix-bn254"
readme = "README.md"
homepage = "https://github.com/M4tsuri/Cryptix/tree/main/cryptix-bn254"
repository = "https://github.com/M4tsuri/Cryptix"
license = "GPL-3.0"
keywords = ["ecc", "bn254", "cryptography"]
categories = ["cryptography", "algorithms", "mathematics", "no-std"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cryptix-field = "0.1.0"
cryptix-bigint = "0.1.0"
cryptix-ecc = "0.1.0"
cryptix-pairing = "0.1.0"
rand_core = { version = "0.6.4", default_features = false, optional = true }

[dev-dependencies]
criterion = "0.4"
criterion-cycles-per-byte = "0.4.0"
rand = { version = "0.8.5", default_features = false }
rand_chacha = { version = "0.3.1", default_features = false }

[features]
rand = ["cryptix-field/rand", "dep:rand_core"]
std = []

[[bench]]
name = "fp2"
harness = false

[[bench]]
name = "fp2_time"
harness = false

[[bench]]
name = "pairing"
harness = false

[[bench]]
name = "pairing_time"
harness = false