1[workspace]2members = ["cmds/*", "crates/*"]3resolver = "2"45[workspace.package]6version = "0.1.0"7license = "MIT"8edition = "2021"9repository = "https://gitlab.delta.directory/iam/remowt"1011[workspace.dependencies]12remowt-fs = { version = "0.1.0", path = "crates/remowt-fs" }13remowt-pty = { version = "0.1.0", path = "crates/remowt-pty" }14remowt-systemd = { version = "0.1.0", path = "crates/remowt-systemd" }15remowt-client = { version = "0.1.0", path = "crates/remowt-client" }16remowt-polkit-shared = { version = "0.1.0", path = "crates/polkit-shared" }17remowt-link-shared = { version = "0.1.0", path = "crates/remowt-link-shared" }18remowt-plugin = { version = "0.1.0", path = "crates/remowt-plugin" }19remowt-ui-prompt = { version = "0.1.0", path = "crates/ui-prompt" }2021bifrostlink = "0.2.0"22bifrostlink-macros = "0.2.0"23bifrostlink-ports = "0.2.0"2425camino = "1.2.2"26anyhow = "1.0.86"27async-trait = "0.1.81"28bytes = "1.11.0"29clap = "4.5.16"30futures = "0.3.30"31futures-util = "0.3.30"32nix = "0.29.0"33openssh = "0.11.0"34pam-client = "0.5.0"35rand = "0.8.5"36russh = { version = "0.61.2", default-features = false, features = [37 "ring",38 "flate2",39 "rsa",40] }41russh-config = "0.58.0"42serde = "1.0.228"43serde_json = "1.0.149"44tempdir = "0.3.7"45tempfile = "3"46tokio = "1.39.3"47tokio-stream = "0.1.15"48tokio-util = "0.7.11"49tracing = "0.1.40"50tracing-subscriber = "0.3.18"51uuid = "1.10.0"52zbus = "4.4.0"53zbus_polkit = "4.0.0"54thiserror = "2.0.18"5556[profile.release]57strip = true58panic = "abort"59opt-level = "z"60lto = true61codegen-units = 1