[package]
edition = "2021"
rust-version = "1.78"
name = "tilejson"
version = "0.4.4"
authors = [
"Stepan Kuzmin <to.stepan.kuzmin@gmail.com>",
"Yuri Astrakhan <YuriAstrakhan@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for serializing the TileJSON file format"
homepage = "https://github.com/georust/tilejson"
documentation = "https://docs.rs/tilejson"
readme = "README.md"
keywords = [
"maplibre",
"mapbox",
"tilejson",
"serde",
]
categories = ["science::geo"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/georust/tilejson"
[lib]
name = "tilejson"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0.103"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.50"
[dependencies.serde_tuple]
version = "1.1.0"
[dependencies.thiserror]
version = "2"
[lints.clippy]
panic_in_result_fn = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"