[package]
edition = "2024"
rust-version = "1.94"
name = "versatiles_derive"
version = "4.10.0"
authors = ["Michael Kreil <versatiles@michael-kreil.de>"]
build = false
exclude = [
".githooks/",
".github/",
".gitignore",
".prettierignore",
".vscode/",
"/docker",
"/scripts",
"/testdata",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A toolbox for converting, checking and serving map tiles in various formats."
homepage = "https://versatiles.org"
readme = "README.md"
keywords = [
"versatiles",
"mbtiles",
"pmtiles",
"tiles",
"map",
]
categories = [
"command-line-utilities",
"science::geo",
"web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/versatiles-org/versatiles-rs"
resolver = "2"
[lib]
name = "versatiles_derive"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0.107"
features = ["proc-macro"]
[dependencies.quote]
version = "1.0.47"
features = ["proc-macro"]
[dependencies.syn]
version = "3.0.3"
features = [
"full",
"extra-traits",
]
[dev-dependencies.anyhow]
version = "1.0.104"
features = ["std"]
default-features = false
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[dev-dependencies.prettyplease]
version = "0.3.0"
[lints.clippy]
cast_precision_loss = "allow"
doc_markdown = "allow"
duration_suboptimal_units = "allow"
ignored_unit_patterns = "allow"
items_after_statements = "allow"
iter_without_into_iter = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "deny"
return_self_not_must_use = "allow"
similar_names = "allow"
trivially_copy_pass_by_ref = "allow"
unnecessary_debug_formatting = "allow"
unnecessary_literal_bound = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
used_underscore_binding = "allow"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unused_imports = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]