[package]
edition = "2024"
name = "alice-math"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A topology and algebra library from first principles"
readme = "readme.md"
keywords = [
"topology",
"algebra",
"lie-groups",
"mathematics",
"manifold",
]
categories = [
"science",
"mathematics",
"no-std",
]
license = "MIT"
repository = "https://github.com/lovechants/alice"
[features]
default = []
std = []
[lib]
name = "alice"
path = "src/lib.rs"
[[bin]]
name = "alice-math"
path = "src/main.rs"
[[test]]
name = "axioms"
path = "tests/axioms.rs"
[[test]]
name = "exp_log_tests"
path = "tests/exp_log_test.rs"
[[test]]
name = "group_tests"
path = "tests/group_tests.rs"
[[test]]
name = "lie_algebra"
path = "tests/lie_algebra_tests.rs"
[[test]]
name = "space_axioms"
path = "tests/space_axioms.rs"
[dependencies.faer]
version = "0.24.0"
[dependencies.libm]
version = "0.2.16"
[dependencies.num-complex]
version = "0.4.6"
[dependencies.serde]
version = "1.0.228"
[dev-dependencies.proptest]
version = "1.11.0"
[profile.test]
opt-level = 1