1[workspace]2members = ["cmds/*", "crates/*"]3resolver = "2"45[workspace.package]6version = "0.1.7"7license = "MIT"8edition = "2021"9repository = "https://git.delta.rocks/r/remowt"1011[workspace.dependencies]12remowt-client = { version = "0.1.7", path = "crates/remowt-client" }13remowt-polkit-shared = { version = "0.1.7", path = "crates/polkit-shared" }14remowt-link-shared = { version = "0.1.7", path = "crates/remowt-link-shared" }15remowt-plugin = { version = "0.1.7", path = "crates/remowt-plugin" }16remowt-ui-prompt = { version = "0.1.7", path = "crates/remowt-ui-prompt" }17remowt-endpoints = { version = "0.1.7", path = "crates/remowt-endpoints" }1819bifrostlink = "0.2.0"20bifrostlink-macros = "0.2.0"21bifrostlink-ports = "0.2.0"2223camino = { version = "1.2.2", features = ["serde1"] }24anyhow = "1.0.86"25bytes = "1.11.0"26clap = "4.5.16"27futures = "0.3.30"28nix = "0.31.3"29pam-client = "0.5.0"30russh = { version = "0.61.2", default-features = false, features = [31 "ring",32 "flate2",33 "rsa",34] }35russh-config = "0.58.0"36serde = "1.0.228"37serde_json = "1.0.149"38tempfile = "3"39tokio = { version = "1.39.3", features = ["fs"] }40tokio-util = "0.7.11"41tracing = "0.1.40"42tracing-subscriber = "0.3.18"43uuid = "1.10.0"44zbus = "5.16.0"45zbus_polkit = "5.0.0"46thiserror = "2.0.18"4748[profile.release]49panic = "unwind"50opt-level = "z"51lto = true52codegen-units = 153debug = "full"54split-debuginfo = "off"