[package]
name = "class-groups"
version = "0.0.1-alpha"
description = "A cryptographic library for working with binary quadratic forms (elements of a class group)"
license = "AGPL-3.0-only"
repository = "https://github.com/kayabaNerve/trout/tree/develop/class-groups"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = ["cryptography", "cl15", "ecdsa", "trout", "homomorphic"]
edition = "2024"
rust-version = "1.85"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--all-features", "-Z", "unstable-options", "--document-private-items", "--document-hidden-items"]
[lints]
workspace = true
[dependencies]
zeroize = { version = "1", default-features = false, features = ["std", "derive"] }
rand = { version = "0.10", default-features = false, features = ["std", "sys_rng"] }
crypto-bigint = { version = "0.7", default-features = false, features = ["zeroize"] }
crypto-primes = { version = "0.7", default-features = false }
[dev-dependencies]
rand_chacha = { version = "0.10", default-features = false, features = ["std"] }
crypto-bigint = { version = "0.7", default-features = false, features = ["extra-sizes"] }
[features]
alloc = ["crypto-bigint/alloc"]
std = ["alloc"]