git.delta.rocks / remowt / refs/commits / 42e2f16609cb

difftreelog

source

Cargo.toml1.3 KiBsourcehistory
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" }13remowt-plugin = { version = "0.1.0", path = "crates/remowt-plugin" }14ui-prompt = { version = "0.1.0", path = "crates/ui-prompt" }1516bifrostlink = "0.2.0"17bifrostlink-macros = "0.2.0"18bifrostlink-ports = "0.2.0"1920camino = "1.2.2"21anyhow = "1.0.86"22async-trait = "0.1.81"23bytes = "1.11.0"24clap = "4.5.16"25futures = "0.3.30"26futures-util = "0.3.30"27nix = "0.29.0"28openssh = "0.11.0"29pam-client = "0.5.0"30rand = "0.8.5"31russh = { version = "0.61.2", default-features = false, features = [32	"ring",33	"flate2",34	"rsa",35] }36russh-config = "0.58.0"37serde = "1.0.228"38serde_json = "1.0.149"39tempdir = "0.3.7"40tempfile = "3"41tokio = "1.39.3"42tokio-stream = "0.1.15"43tokio-util = "0.7.11"44tracing = "0.1.40"45tracing-subscriber = "0.3.18"46uuid = "1.10.0"47zbus = "4.4.0"48zbus_polkit = "4.0.0"49thiserror = "2.0.18"5051[profile.release]52strip = true53panic = "abort"54opt-level = "z"55lto = true56codegen-units = 1