From b9c992e5c232b32466e6840cec2e2fa7113e33ef Mon Sep 17 00:00:00 2001 From: Tyler Wickline Date: Sat, 14 Feb 2026 13:08:20 -0800 Subject: [PATCH] fix(deps): replace local path dependency with git source fgp-daemon was pinned to a sibling directory via path = "../daemon", which prevents anyone from building the crate after a standalone clone. Switch to a git dependency so the SDK is fetched automatically. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c1978d4..22f6b1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ name = "fgp-github" path = "src/main.rs" [dependencies] -# FGP daemon SDK (local path for development) -fgp-daemon = { path = "../daemon" } +# FGP daemon SDK +fgp-daemon = { git = "https://github.com/fast-gateway-protocol/daemon" } # HTTP client (disable default-tls to avoid OpenSSL for cross-compilation) reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }