tilejson 0.4.4

Library for serializing the TileJSON file format
Documentation
[package]
name = "tilejson"
version = "0.4.4"
description = "Library for serializing the TileJSON file format"
authors = [
    "Stepan Kuzmin <to.stepan.kuzmin@gmail.com>",
    "Yuri Astrakhan <YuriAstrakhan@gmail.com>",
]
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/tilejson"
homepage = "https://github.com/georust/tilejson"
repository = "https://github.com/georust/tilejson"
readme = "README.md"
keywords = ["maplibre", "mapbox", "tilejson", "serde"]
categories = ["science::geo"]
rust-version = "1.78"

[dependencies]
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
serde_tuple = "1.1.0"
thiserror = "2"

[lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"

[lints.clippy]
# Restrictions
panic_in_result_fn = "warn"
todo = "warn"
unwrap_used = "warn"
# Pedantics without being too noisy
pedantic = { level = "warn", priority = -1 }