[package]
edition = "2024"
name = "versatiles_image"
version = "3.4.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"
[features]
default = []
test = []
[lib]
name = "versatiles_image"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.100"
features = ["std"]
default-features = false
[dependencies.fast_image_resize]
version = "6.0.0"
features = ["image"]
default-features = false
[dependencies.image]
version = "0.25.9"
features = [
"avif",
"jpeg",
"png",
"webp",
]
default-features = false
[dependencies.imageproc]
version = "0.26.0"
default-features = false
[dependencies.versatiles_core]
version = "3.4.0"
default-features = false
[dependencies.versatiles_derive]
version = "3.4.0"
default-features = false
[dependencies.webp]
version = "0.3.1"
[dev-dependencies.rstest]
version = "0.26.1"
default-features = false
[lints.clippy]
cast_precision_loss = "allow"
doc_markdown = "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 = "allow"
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]
unused_imports = "deny"