[package]
edition = "2021"
name = "tattoy-protocol"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Types to help with writing Rust-based Tattoy plugins"
documentation = "https://docs.rs/tattoy-protocol"
readme = false
license = "MIT"
[lib]
name = "tattoy_protocol"
path = "src/lib.rs"
[dependencies.bon]
version = "3.6.0"
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
features = ["preserve_order"]
[lints.clippy]
absolute_paths = "allow"
arbitrary_source_item_ordering = "allow"
arithmetic_side_effects = "allow"
blanket_clippy_restriction_lints = "allow"
cargo_common_metadata = "allow"
float_arithmetic = "allow"
implicit_return = "allow"
missing_trait_methods = "allow"
multiple_crate_versions = "allow"
multiple_inherent_impl = "allow"
non_ascii_literal = "allow"
option_if_let_else = "allow"
partial_pub_fields = "allow"
pattern_type_mismatch = "allow"
pub_with_shorthand = "allow"
question_mark_used = "allow"
self_named_module_files = "allow"
single_call_fn = "allow"
single_match_else = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "allow"
struct_field_names = "allow"
unseparated_literal_suffix = "allow"
upper_case_acronyms = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"