[package]
edition = "2024"
name = "oxigdal-noalloc"
version = "0.1.7"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std, no_alloc fixed-size geometry primitives for OxiGDAL"
readme = "README.md"
keywords = [
"geospatial",
"geometry",
"no_std",
"embedded",
]
categories = [
"no-std",
"science",
]
license = "Apache-2.0"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
std = []
[lib]
name = "oxigdal_noalloc"
path = "src/lib.rs"
[[test]]
name = "noalloc_test"
path = "tests/noalloc_test.rs"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
expect_used = "warn"
manual_midpoint = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
panic = "deny"
similar_names = "allow"
suboptimal_flops = "allow"
unwrap_used = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"