[package]
edition = "2024"
rust-version = "1.95"
name = "noalloc-slip-rs"
version = "0.2.1"
authors = [
"Jérémy Audiger",
"Kamel Azira",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A no-std SLIP (Serial Line Internet Protocol) encoder and decoder implementation.
"""
readme = "README.md"
keywords = [
"static",
"no-heap",
]
categories = ["no-std"]
license = "Apache-2.0"
repository = "https://github.com/jaudiger/noalloc-slip-rs"
[lib]
name = "noalloc_slip_rs"
path = "src/lib.rs"
[dependencies.noalloc-vec-rs]
version = "0.2.1"
[lints.clippy]
missing_errors_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
incremental = false
strip = "symbols"