[package]
edition = "2021"
rust-version = "1.88"
name = "projective-grid"
version = "0.5.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic 2D projective grid graph construction, traversal, and homography tools"
homepage = "https://vitalyvorobyev.github.io/calib-targets-rs/"
documentation = "https://vitalyvorobyev.github.io/calib-targets-rs/api"
readme = "README.md"
keywords = [
"computer-vision",
"geometry",
"homography",
"grid",
"calibration",
]
categories = [
"computer-vision",
"science",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/VitalyVorobyev/calib-targets-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
tracing = ["dep:tracing"]
[lib]
name = "projective_grid"
path = "src/lib.rs"
[dependencies.kiddo]
version = "5"
[dependencies.nalgebra]
version = "0.34"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
optional = true