alice-math 0.1.0

A topology and algebra library from first principles
Documentation
[package]
name = "alice-math"
version = "0.1.0"
edition = "2024"
description = "A topology and algebra library from first principles"
license = "MIT"
repository = "https://github.com/lovechants/alice"
keywords = ["topology", "algebra", "lie-groups", "mathematics", "manifold"]
categories = ["science", "mathematics", "no-std"]
readme = "readme.md"
 
[lib]
name = "alice"
 
[features]
default = []
std = []
 

[dependencies]
faer = "0.24.0"
libm = "0.2.16"
num-complex = "0.4.6"
serde = "1.0.228"

[dev-dependencies]
proptest = "1.11.0"

[[test]]
name = "axioms"
path = "tests/axioms.rs"
 
[[test]]
name = "space_axioms"
path = "tests/space_axioms.rs"

[[test]]
name = "lie_algebra"
path = "tests/lie_algebra_tests.rs"

[[test]]
name = "exp_log_tests"
path = "tests/exp_log_test.rs"

[[test]]
name = "group_tests"
path = "tests/group_tests.rs"

[profile.test]
opt-level = 1