git.delta.rocks / remowt / refs/commits / 8b18e8b236d4

difftreelog

fix avoid dashes in unit name

knlmzmlpYaroslav Bolyukin2026-06-15parent: #1144764.patch.diff
in: trunk

3 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1776,7 +1776,7 @@
 
 [[package]]
 name = "polkit-backend"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "anyhow",
  "clap",
@@ -1950,7 +1950,7 @@
 
 [[package]]
 name = "remowt-agent"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "anyhow",
  "bifrostlink",
@@ -1975,7 +1975,7 @@
 
 [[package]]
 name = "remowt-client"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "anyhow",
  "bifrostlink",
@@ -1997,7 +1997,7 @@
 
 [[package]]
 name = "remowt-endpoints"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "bifrostlink",
  "camino",
@@ -2012,7 +2012,7 @@
 
 [[package]]
 name = "remowt-link-shared"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "bifrostlink",
  "bytes",
@@ -2026,7 +2026,7 @@
 
 [[package]]
 name = "remowt-plugin"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "anyhow",
  "bifrostlink",
@@ -2039,7 +2039,7 @@
 
 [[package]]
 name = "remowt-polkit-shared"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "nix",
  "serde",
@@ -2048,7 +2048,7 @@
 
 [[package]]
 name = "remowt-ssh"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "anyhow",
  "clap",
@@ -2063,7 +2063,7 @@
 
 [[package]]
 name = "remowt-ui-prompt"
-version = "0.1.8"
+version = "0.1.9"
 dependencies = [
  "anyhow",
  "bifrostlink",
modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,18 +3,18 @@
 resolver = "2"
 
 [workspace.package]
-version = "0.1.8"
+version = "0.1.9"
 license = "MIT"
 edition = "2021"
 repository = "https://git.delta.rocks/r/remowt"
 
 [workspace.dependencies]
-remowt-client = { version = "0.1.8", path = "crates/remowt-client" }
-remowt-polkit-shared = { version = "0.1.8", path = "crates/polkit-shared" }
-remowt-link-shared = { version = "0.1.8", path = "crates/remowt-link-shared" }
-remowt-plugin = { version = "0.1.8", path = "crates/remowt-plugin" }
-remowt-ui-prompt = { version = "0.1.8", path = "crates/remowt-ui-prompt" }
-remowt-endpoints = { version = "0.1.8", path = "crates/remowt-endpoints" }
+remowt-client = { version = "0.1.9", path = "crates/remowt-client" }
+remowt-polkit-shared = { version = "0.1.9", path = "crates/polkit-shared" }
+remowt-link-shared = { version = "0.1.9", path = "crates/remowt-link-shared" }
+remowt-plugin = { version = "0.1.9", path = "crates/remowt-plugin" }
+remowt-ui-prompt = { version = "0.1.9", path = "crates/remowt-ui-prompt" }
+remowt-endpoints = { version = "0.1.9", path = "crates/remowt-endpoints" }
 
 bifrostlink = "0.2.0"
 bifrostlink-macros = "0.2.0"
modifiedcrates/remowt-client/src/lib.rsdiffbeforeafterboth
436 args.extend(flags.iter().copied().map(str::to_owned));436 args.extend(flags.iter().copied().map(str::to_owned));
437 if tool == "run0" {437 if tool == "run0" {
438 args.push(format!(438 args.push(format!(
439 "--unit={}-{}-{}.scope",439 "--unit={}-{}.service",
440 self.0.user,440 self.0.user,
441 std::process::id(),
442 Uuid::new_v4()441 Uuid::new_v4().simple()
443 ));442 ));
444 }443 }
445 args.push(agent_path);444 args.push(agent_path);