[package]
edition = "2021"
rust-version = "1.74"
name = "target-match"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Given a telescope pointing and field of view, rank which catalogued sky objects fall on the frame. Matches by sky position; holds no catalogue data and does no I/O."
documentation = "https://docs.rs/target-match"
readme = "README.md"
keywords = [
"astronomy",
"astrophotography",
"catalog",
"coordinates",
"fov",
]
categories = [
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/nightwatch-astro/target-match"
[package.metadata.docs.rs]
all-features = true
[features]
serde = [
"dep:serde",
"skymath/serde",
]
[lib]
name = "target_match"
path = "src/lib.rs"
[[example]]
name = "identify"
path = "examples/identify.rs"
[[test]]
name = "coordinates_only"
path = "tests/coordinates_only.rs"
[[test]]
name = "known_values"
path = "tests/known_values.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "serde_feature"
path = "tests/serde_feature.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.skymath]
version = "0.3"
[dependencies.thiserror]
version = "2"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"