From 6d17e82843879c0d934c1bc9bdb1f2c04f3aeef8 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Thu, 2 Apr 2026 19:46:43 -0400 Subject: [PATCH] use git URL for jobkit instead of local path Co-Authored-By: Proof of Concept --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 8c5e8fe..82f3ce2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2045,6 +2045,7 @@ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" [[package]] name = "jobkit" version = "0.3.0" +source = "git+https://evilpiepirate.org/git/jobkit.git#4aacaac22c5f59a7fbc6ce3a65708fc370e55754" dependencies = [ "chrono", "console-subscriber 0.4.1", diff --git a/Cargo.toml b/Cargo.toml index 89d598e..d8411b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ memmap2 = "0.9" rayon = "1" peg = "0.8" paste = "1" -jobkit = { path = "/home/kent/jobkit", features = ["daemon", "console"] } +jobkit = { git = "https://evilpiepirate.org/git/jobkit.git", features = ["daemon", "console"] } tokio = { version = "1", features = ["full", "tracing"] } console-subscriber = "0.5" reqwest = { version = "0.12", features = ["json"] }