[package]
edition = "2024"
name = "diffable"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a differential geometry framework for rust"
homepage = "https://aaroncottle.au"
readme = "readme.md"
keywords = [
"mathematics",
"geometry",
"linear-algebra",
"abstract-algebra",
"topology",
]
categories = [
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/minerscale/diffable"
[package.metadata.docs.rs]
all-features = true
[features]
all = ["testing"]
testing = ["dep:proptest"]
[lib]
name = "diffable"
path = "src/lib.rs"
doctest = false
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "coords"
path = "tests/coords.rs"
[[test]]
name = "discrete"
path = "tests/discrete.rs"
[[test]]
name = "flat"
path = "tests/flat.rs"
[[test]]
name = "hypersphere"
path = "tests/hypersphere.rs"
[[test]]
name = "quaternion"
path = "tests/quaternion.rs"
[[test]]
name = "spacetime"
path = "tests/spacetime.rs"
[dependencies.itertools]
version = "0.15.0"
[dependencies.num-derive]
version = "0.4.2"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.proptest]
version = "1.11.0"
optional = true