[package]
edition = "2021"
rust-version = "1.89"
name = "oxiproj-engine"
version = "0.1.2"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proj-string parser, operation dispatch, and transformation pipelines for OxiProj."
readme = "README.md"
keywords = [
"cooljapan",
"oxiproj",
"proj",
"gis",
"projection",
]
categories = [
"science::geo",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiproj"
[package.metadata.docs.rs]
all-features = false
features = []
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
network = ["oxiproj-transformations/network"]
[lib]
name = "oxiproj_engine"
path = "src/lib.rs"
[[test]]
name = "autodiff_factors"
path = "tests/autodiff_factors.rs"
[[test]]
name = "azimuthal_differential"
path = "tests/azimuthal_differential.rs"
[[test]]
name = "conic_differential"
path = "tests/conic_differential.rs"
[[test]]
name = "cylindrical_inline"
path = "tests/cylindrical_inline.rs"
[[test]]
name = "datum_shift"
path = "tests/datum_shift.rs"
[[test]]
name = "diff_drafts"
path = "tests/diff_drafts.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "factors"
path = "tests/factors.rs"
[[test]]
name = "misc_differential"
path = "tests/misc_differential.rs"
[[test]]
name = "ob_tran_rotated_pole"
path = "tests/ob_tran_rotated_pole.rs"
[[test]]
name = "pipeline_io_units"
path = "tests/pipeline_io_units.rs"
[[test]]
name = "proptest_engine"
path = "tests/proptest_engine.rs"
[[test]]
name = "pseudocyl_differential"
path = "tests/pseudocyl_differential.rs"
[[test]]
name = "push_pop"
path = "tests/push_pop.rs"
[[test]]
name = "transform_pipeline"
path = "tests/transform_pipeline.rs"
[[test]]
name = "units_scaling"
path = "tests/units_scaling.rs"
[dependencies.oxiproj-core]
version = "0.1.2"
[dependencies.oxiproj-geodesic]
version = "0.1.2"
[dependencies.oxiproj-projections]
version = "0.1.2"
[dependencies.oxiproj-transformations]
version = "0.1.2"
[dev-dependencies.proptest]
version = "1.11"