cryptix-field 0.1.0

A library for group, ring and field arithmetics based on cryptix-bigint
Documentation
[package]
name = "cryptix-field"
version = "0.1.0"
edition = "2021"
authors = ["m4tsuri"]
description = "A library for group, ring and field arithmetics based on cryptix-bigint"
documentation = "https://docs.rs/cryptix-field"
readme = "README.md"
homepage = "https://github.com/M4tsuri/Cryptix/tree/main/cryptix-field"
repository = "https://github.com/M4tsuri/Cryptix"
license = "GPL-3.0"
keywords = ["abstract-algebra", "field", "group", "ring", "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-bigint = "0.1.0"
rand_core = { version = "0.6.4", default_features = false, optional = true }

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

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

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