[package]
edition = "2024"
rust-version = "1.95.0"
name = "use-ray"
version = "0.1.0"
authors = ["RustUse Contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ray primitives for the RustUse geometry workspace"
homepage = "https://rustuse.org"
documentation = "https://docs.rs/use-ray"
readme = "README.md"
keywords = [
"geometry",
"ray",
"2d",
"rustuse",
]
categories = [
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustUse/use-geometry"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "use_ray"
path = "src/lib.rs"
[dependencies.use-coordinate]
version = "0.0.6"
[dependencies.use-point]
version = "0.1.0"
[dependencies.use-vector]
version = "0.0.7"
[lints.clippy]
expect_used = "warn"
multiple_crate_versions = "allow"
todo = "deny"
unimplemented = "deny"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"