[package]
edition = "2021"
name = "transforms"
version = "1.1.1"
authors = ["Deniz Hofmeister"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A transform library to track reference frames and provide transforms between them."
readme = "README.md"
keywords = [
"robotics",
"transform",
"3d",
"coordinate",
]
categories = [
"science::robotics",
"no-std",
"simulation",
"mathematics",
]
license = "MIT"
repository = "https://github.com/deniz-hofmeister/transforms"
[features]
default = ["std"]
std = []
[lib]
name = "transforms"
path = "src/lib.rs"
[[example]]
name = "no_std_full"
path = "examples/no_std_full.rs"
required-features = []
[[example]]
name = "no_std_minimal"
path = "examples/no_std_minimal.rs"
required-features = []
[[example]]
name = "std_full"
path = "examples/std_full.rs"
required-features = ["std"]
[[example]]
name = "std_minimal"
path = "examples/std_minimal.rs"
required-features = ["std"]
[[test]]
name = "tests"
path = "tests/tests.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.approx]
version = "0.5.1"
[dependencies.hashbrown]
version = "0.16.0"
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.criterion]
version = "0.8.0"
[dev-dependencies.env_logger]
version = "0.11.8"
[dev-dependencies.log]
version = "0.4.27"
[dev-dependencies.tokio]
version = "1.46.1"
features = ["full"]
[profile.release]
lto = true
codegen-units = 1