[package]
edition = "2021"
rust-version = "1.86"
name = "everymap-core"
version = "0.2.1"
authors = ["angoratek"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits, types, and error handling for EveryMap — unified geospatial API abstraction"
documentation = "https://docs.rs/everymap-core"
readme = "README.md"
keywords = [
"geospatial",
"maps",
"api",
"abstraction",
]
categories = [
"api-bindings",
"science::geo",
]
license = "MIT"
repository = "https://github.com/angoratek/everymap-rs"
[features]
integration = []
[lib]
name = "everymap_core"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.flexpolyline]
version = "1.0"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dev-dependencies]
[lints.clippy]
doc_markdown = "allow"
enum_variant_names = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "allow"
priority = -1
[lints.clippy.nursery]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
unsafe_code = "deny"