[package]
edition = "2024"
rust-version = "1.94.0"
name = "cad-cs"
version = "0.1.0-beta.2"
authors = ["Jan Roman Cisowski „j-Cis”"]
build = false
exclude = [
".history/",
".err/",
".github/",
".vscode/",
".temp/",
".rustfmt.toml",
"Makefile.toml",
"TODO.md",
"ROADMAP.md",
"AUTHORS.md",
"CHANGELOG.md",
"CHEATSHEET.md",
".gitignore",
".gitattributes",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Calculations on Coordinate Systems (2D/3D geometry, vectors, transformations)"
documentation = "https://docs.rs/cad-cs"
readme = "README.md"
keywords = [
"geometry",
"math",
"coordinates",
"cad",
"vector",
]
categories = [
"mathematics",
"science",
"science::geo",
"algorithms",
"graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/j-Cis/cad-cs"
resolver = "3"
[package.metadata.cargo]
edition = "2024"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cad_cs"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "playground"
path = "examples/playground.rs"
[dependencies]
[lints.clippy]
too_many_arguments = "allow"
[lints.rust]
unsafe_code = "forbid"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"