[package]
edition = "2021"
rust-version = "1.75"
name = "amari"
version = "0.18.0"
authors = ["Amari Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Advanced mathematical computing library with geometric algebra, tropical algebra, and automatic differentiation"
homepage = "https://github.com/justinelliottcobb/Amari"
readme = "README.md"
keywords = [
"mathematics",
"geometric-algebra",
"tropical-algebra",
"autodiff",
"wasm",
]
categories = [
"mathematics",
"science",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/justinelliottcobb/Amari"
[features]
calculus = ["dep:amari-calculus"]
default = []
deterministic = []
dynamics = ["dep:amari-dynamics"]
flynn = ["dep:amari-flynn"]
full = [
"gpu",
"optimization",
"flynn",
"measure",
"calculus",
"holographic",
"probabilistic",
"functional",
"topology",
"dynamics",
]
functional = ["dep:amari-functional"]
gpu = ["dep:amari-gpu"]
holographic = ["dep:amari-holographic"]
measure = ["dep:amari-measure"]
optimization = ["dep:amari-optimization"]
probabilistic = ["dep:amari-probabilistic"]
topology = ["dep:amari-topology"]
[lib]
name = "amari"
path = "src/lib.rs"
[[bin]]
name = "amari"
path = "src/main.rs"
[[example]]
name = "networked_physics"
path = "examples/networked_physics.rs"
required-features = ["deterministic"]
[[test]]
name = "determinism_cross_platform"
path = "tests/determinism_cross_platform.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "deterministic_perf"
path = "benches/deterministic_perf.rs"
[[bench]]
name = "edge_computing_benchmarks"
path = "benches/edge_computing_benchmarks.rs"
[dependencies.amari-automata]
version = "0.18.0"
[dependencies.amari-calculus]
version = "0.18.0"
optional = true
[dependencies.amari-core]
version = "0.18.0"
features = [
"std",
"phantom-types",
"high-precision",
]
[dependencies.amari-dual]
version = "0.18.0"
[dependencies.amari-dynamics]
version = "0.18.0"
optional = true
[dependencies.amari-enumerative]
version = "0.18.0"
[dependencies.amari-flynn]
version = "0.18.0"
optional = true
[dependencies.amari-functional]
version = "0.18.0"
optional = true
[dependencies.amari-fusion]
version = "0.18.0"
[dependencies.amari-gpu]
version = "0.18.0"
optional = true
[dependencies.amari-holographic]
version = "0.18.0"
optional = true
[dependencies.amari-info-geom]
version = "0.18.0"
[dependencies.amari-measure]
version = "0.18.0"
optional = true
[dependencies.amari-network]
version = "0.18.0"
[dependencies.amari-optimization]
version = "0.18.0"
optional = true
[dependencies.amari-probabilistic]
version = "0.18.0"
optional = true
[dependencies.amari-relativistic]
version = "0.18.0"
[dependencies.amari-topology]
version = "0.18.0"
optional = true
[dependencies.amari-tropical]
version = "0.18.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tokio]
version = "1.0"
features = ["full"]
[profile.bench]
inherits = "release"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
codegen-units = 1