[package]
edition = "2024"
rust-version = "1.85"
name = "scs-sdk-plugin"
version = "0.1.1"
build = false
exclude = ["AGENTS.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe lifecycle and callback framework for SCS Telemetry and Input plugins"
homepage = "https://github.com/AptS-1547/scs-sdk-crates"
documentation = "https://docs.rs/scs-sdk-plugin"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/AptS-1547/scs-sdk-crates"
[lib]
name = "scs_sdk_plugin"
path = "src/lib.rs"
[dependencies.scs-sdk]
version = "=0.1.1"
[dependencies.scs-sdk-plugin-macros]
version = "=0.1.1"
[dependencies.scs-sdk-sys]
version = "=0.1.1"
[lints.clippy]
allow_attributes = "deny"
allow_attributes_without_reason = "deny"
cast_possible_truncation = "deny"
cast_sign_loss = "deny"
multiple_unsafe_ops_per_block = "deny"
undocumented_unsafe_blocks = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"