1[workspace]2members = ["cmds/*", "crates/*"]3resolver = "2"4package.version = "0.1.0"56[workspace.dependencies]7remowt-fs = { path = "crates/remowt-fs" }8remowt-pty = { path = "crates/remowt-pty" }9remowt-systemd = { path = "crates/remowt-systemd" }10remowt-client = { path = "crates/remowt-client" }11polkit-shared = { version = "0.1.0", path = "crates/polkit-shared" }12remowt-link-shared = { version = "0.1.0", path = "crates/remowt-link-shared" }13ui-prompt = { version = "0.1.0", path = "crates/ui-prompt" }1415bifrostlink = "0.2.0"16bifrostlink-macros = "0.2.0"17bifrostlink-ports = "0.2.0"1819camino = "1.2.2"20anyhow = "1.0.86"21async-trait = "0.1.81"22bytes = "1.11.0"23clap = "4.5.16"24futures = "0.3.30"25futures-util = "0.3.30"26nix = "0.29.0"27openssh = "0.11.0"28pam-client = "0.5.0"29rand = "0.8.5"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"38tempdir = "0.3.7"39tempfile = "3"40tokio = "1.39.3"41tokio-stream = "0.1.15"42tokio-util = "0.7.11"43tracing = "0.1.40"44tracing-subscriber = "0.3.18"45uuid = "1.10.0"46zbus = "4.4.0"47zbus_polkit = "4.0.0"48thiserror = "2.0.18"4950[profile.release]51strip = true52panic = "abort"53opt-level = "z"54lto = true55codegen-units = 1