1[package]2name = "remowt-pty"3description = "PTY/shell endpoint for remowt"4version.workspace = true5edition = "2021"6license.workspace = true78[dependencies]9bifrostlink.workspace = true10bifrostlink-macros.workspace = true11camino = { workspace = true, features = ["serde1"] }12nix = { workspace = true, features = ["process", "term"] }13serde = { workspace = true, features = ["derive"] }14thiserror.workspace = true15tokio = { workspace = true, features = [16 "net",17 "io-util",18 "rt",19 "macros",20 "process",21 "sync",22] }23tracing.workspace = true