From 5cde8514e3ae7ff343bd6473cb52262f18e5909a Mon Sep 17 00:00:00 2001 From: Tyler Wickline Date: Sat, 14 Feb 2026 13:08:19 -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 dbd728a..4ebc379 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ name = "browser-gateway" 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" } # Chrome DevTools Protocol chromiumoxide = { version = "0.7", default-features = false, features = ["tokio-runtime"] }