[package]
edition = "2021"
rust-version = "1.82"
name = "deck-plugin"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WASM plugin host trait + manifest types (ono-sendai). Loader is wired in 0.2."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/hinanohart/ono-sendai"
[lib]
name = "deck_plugin"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.deck-core]
version = "0.1.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.toml]
version = "0.8"
[lints.clippy]
cognitive_complexity = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
doc_lazy_continuation = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_continue = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"
too_long_first_doc_paragraph = "allow"
unnecessary_wraps = "allow"
unused_async = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "deny"