[package]
edition = "2021"
rust-version = "1.85"
name = "proj-core"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust coordinate transformation library with no C dependencies"
homepage = "https://github.com/roteiro-gis/proj-rust"
documentation = "https://docs.rs/proj-core"
readme = "README.md"
keywords = [
"projection",
"coordinates",
"gis",
"epsg",
"transform",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/roteiro-gis/proj-rust"
[features]
c-proj-compat = [
"dep:proj",
"dep:proj-sys",
]
default = [
"rayon",
"geo-types",
]
geo-types = ["dep:geo-types"]
rayon = ["dep:rayon"]
[lib]
name = "proj_core"
path = "src/lib.rs"
[[test]]
name = "api_compatibility"
path = "tests/api_compatibility.rs"
[[test]]
name = "live_c_proj_parity"
path = "tests/live_c_proj_parity.rs"
[[test]]
name = "live_c_proj_parity_3d"
path = "tests/live_c_proj_parity_3d.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "reference_values"
path = "tests/reference_values.rs"
[[test]]
name = "three_d_api"
path = "tests/three_d_api.rs"
[[bench]]
name = "transform_bench"
path = "benches/transform_bench.rs"
harness = false
[[bench]]
name = "transform_compare_bench"
path = "benches/transform_compare_bench.rs"
harness = false
required-features = ["c-proj-compat"]
[dependencies.geo-types]
version = "0.7"
optional = true
[dependencies.proj]
version = "0.31"
features = ["bundled_proj"]
optional = true
[dependencies.proj-sys]
version = "0.27"
features = ["bundled_proj"]
optional = true
[dependencies.rayon]
version = "1"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"