everymap-core 0.2.1

Core traits, types, and error handling for EveryMap — unified geospatial API abstraction
Documentation
[package]
name = "everymap-core"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "Core traits, types, and error handling for EveryMap — unified geospatial API abstraction"
keywords = ["geospatial", "maps", "api", "abstraction"]
categories = ["api-bindings", "science::geo"]
readme = "../README.md"
documentation = "https://docs.rs/everymap-core"
authors.workspace = true

[features]
integration = []

[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
async-trait = { workspace = true }
reqwest = { workspace = true }
thiserror = { workspace = true }
flexpolyline = { workspace = true }
zeroize = { workspace = true }

[dev-dependencies]
# Path-only dev-dependencies (no version): cargo strips these from the
# published manifest, which breaks the chicken-and-egg cycle — core's
# dev-deps are its own dependents, which do not exist on crates.io until
# after core is first published.
everymap-providers-here = { path = "../everymap-providers-here" }
everymap-providers-google = { path = "../everymap-providers-google" }
everymap-providers-tomtom = { path = "../everymap-providers-tomtom" }
everymap-providers-mapbox = { path = "../everymap-providers-mapbox" }

[lints]
workspace = true