proj-core 0.1.0

Pure-Rust coordinate transformation library with no C dependencies
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "proj-core"
version = "0.1.0"
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/i-norden/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/i-norden/proj-rust"

[features]
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 = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "reference_values"
path = "tests/reference_values.rs"

[[bench]]
name = "transform_bench"
path = "benches/transform_bench.rs"
harness = false

[dependencies.geo-types]
version = "0.7"
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"