1[workspace]2members = ["cmds/*", "crates/*"]3resolver = "2"45[workspace.package]6version = "0.1.6"7license = "MIT"8edition = "2021"9repository = "https://git.delta.rocks/r/remowt"1011[workspace.dependencies]12remowt-client = { version = "0.1.6", path = "crates/remowt-client" }13remowt-polkit-shared = { version = "0.1.6", path = "crates/polkit-shared" }14remowt-link-shared = { version = "0.1.6", path = "crates/remowt-link-shared" }15remowt-plugin = { version = "0.1.6", path = "crates/remowt-plugin" }16remowt-ui-prompt = { version = "0.1.6", path = "crates/remowt-ui-prompt" }17remowt-endpoints = { version = "0.1.6", 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"25async-trait = "0.1.81"26bytes = "1.11.0"27clap = "4.5.16"28futures = "0.3.30"29futures-util = "0.3.30"30nix = "0.31.3"31openssh = "0.11.0"32pam-client = "0.5.0"33rand = "0.10.1"34russh = { version = "0.61.2", default-features = false, features = [35 "ring",36 "flate2",37 "rsa",38] }39russh-config = "0.58.0"40serde = "1.0.228"41serde_json = "1.0.149"42tempdir = "0.3.7"43tempfile = "3"44tokio = { version = "1.39.3", features = ["fs"] }45tokio-stream = "0.1.15"46tokio-util = "0.7.11"47tracing = "0.1.40"48tracing-subscriber = "0.3.18"49uuid = "1.10.0"50zbus = "5.16.0"51zbus_polkit = "5.0.0"52thiserror = "2.0.18"5354[profile.release]55panic = "unwind"56opt-level = "z"57lto = true58codegen-units = 159debug = "full"60split-debuginfo = "off"