[package]
edition = "2024"
rust-version = "1.88"
name = "zarrs_plugin"
version = "0.4.1"
authors = ["Lachlan Deakin <ljdgit@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The plugin API for the zarrs crate"
homepage = "https://zarrs.dev"
documentation = "https://docs.rs/zarrs_plugin"
readme = "README.md"
keywords = [
"zarr",
"zarrs",
"plugin",
]
categories = ["encoding"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/zarrs/zarrs/tree/main/zarrs_plugin"
resolver = "2"
[lib]
name = "zarrs_plugin"
path = "src/lib.rs"
[[test]]
name = "test_plugin"
path = "tests/test_plugin.rs"
[dependencies.paste]
version = "1.0.15"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde_json]
version = "1.0.71"
[dependencies.thiserror]
version = "2.0.12"
[lints.clippy]
missing_errors_doc = "warn"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_variables = "warn"