[package]
edition = "2024"
rust-version = "1.93.0"
name = "alga2"
version = "0.1.0"
authors = ["5-6-1"]
build = false
exclude = [
"rustfmt.toml",
".github/",
".idea/",
"proptest-regressions/",
"Cargo.lock",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern abstract-algebra hierarchy for Rust — the successor to alga, powered by batch-impl"
homepage = "https://github.com/5-6-1/alga2-rs"
documentation = "https://docs.rs/alga2"
readme = "README.md"
keywords = [
"algebra",
"monoid",
"group",
"ring",
"field",
]
categories = [
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/5-6-1/alga2-rs"
[features]
alloc = []
default = ["std"]
proptest = [
"dep:proptest",
"std",
]
std = ["alloc"]
[lib]
name = "alga2"
path = "src/lib.rs"
[[test]]
name = "derive_alga"
path = "tests/derive_alga.rs"
[[test]]
name = "derive_generic"
path = "tests/derive_generic.rs"
[[test]]
name = "derive_generic_where"
path = "tests/derive_generic_where.rs"
[[test]]
name = "derive_levels"
path = "tests/derive_levels.rs"
[[test]]
name = "derive_multi_generic"
path = "tests/derive_multi_generic.rs"
[[test]]
name = "downstream_no_imports"
path = "tests/downstream_no_imports.rs"
[dependencies.batch-impl]
version = "0.9"
[dependencies.proptest]
version = "1"
optional = true
[dev-dependencies.proptest]
version = "1"