[package]
edition = "2021"
rust-version = "1.86"
name = "everymap-providers-mapbox"
version = "0.2.1"
authors = ["angoratek"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MapBox provider for EveryMap — geocoding, routing, static maps, and more"
documentation = "https://docs.rs/everymap-providers-mapbox"
readme = "README.md"
keywords = [
"geospatial",
"maps",
"mapbox",
"api",
]
categories = [
"api-bindings",
"science::geo",
]
license = "MIT"
repository = "https://github.com/angoratek/everymap-rs"
[lib]
name = "everymap_providers_mapbox"
path = "src/lib.rs"
[[test]]
name = "error_cases"
path = "tests/error_cases.rs"
[[test]]
name = "ext_contract"
path = "tests/ext_contract.rs"
[[test]]
name = "http_errors"
path = "tests/http_errors.rs"
[[test]]
name = "imaging_contract"
path = "tests/imaging_contract.rs"
[[test]]
name = "isoline_contract"
path = "tests/isoline_contract.rs"
[[test]]
name = "matching_contract"
path = "tests/matching_contract.rs"
[[test]]
name = "routing_contract"
path = "tests/routing_contract.rs"
[[test]]
name = "search_contract"
path = "tests/search_contract.rs"
[[test]]
name = "tiling_contract"
path = "tests/tiling_contract.rs"
[[test]]
name = "tour_contract"
path = "tests/tour_contract.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.everymap-core]
version = "0.2.1"
[dependencies.log]
version = "0.4"
[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"]
[dev-dependencies.wiremock]
version = "0.6"
[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"