2026-04-26 12:39:06 -06:00
|
|
|
[package]
|
|
|
|
|
name = "unshell-leaves"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
description = "Application-layer UnShell leaves and client surfaces"
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
2026-04-26 12:57:56 -06:00
|
|
|
leaf_endpoint = ["dep:portable-pty"]
|
|
|
|
|
leaf_tui = []
|
2026-04-26 12:39:06 -06:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
rkyv = { workspace = true }
|
|
|
|
|
portable-pty = { workspace = true, optional = true }
|
2026-04-26 13:02:53 -06:00
|
|
|
unshell-macros = { workspace = true }
|
2026-04-26 12:57:56 -06:00
|
|
|
unshell-protocol = { workspace = true }
|
2026-04-26 12:39:06 -06:00
|
|
|
|
|
|
|
|
[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"
|
|
|
|
|
missing_docs = "warn"
|