Files
unshell/unshell-protocol/Cargo.toml
T

29 lines
775 B
TOML
Raw Normal View History

[package]
name = "unshell-protocol"
version.workspace = true
edition.workspace = true
description = "Wire protocol, framing, validation, and endpoint runtime for UnShell"
[lib]
doctest = false
[dependencies]
rkyv = { workspace = true }
2026-05-16 14:14:00 -06:00
# unshell-macros = { path = "../unshell-macros" }
2026-05-27 11:04:22 -06:00
[dev-dependencies]
crossbeam-channel.workspace = true
[lints.rust]
elided_lifetimes_in_paths = "warn"
future_incompatible = { level = "warn", priority = -1 }
nonstandard_style = { level = "warn", priority = -1 }
rust_2018_idioms = { level = "warn", priority = -1 }
rust_2021_prelude_collisions = "warn"
semicolon_in_expressions_from_macros = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
trivial_casts = "allow"
2026-05-16 14:14:00 -06:00
# missing_docs = "warn"