From 1e67b80d10a7d5e5c82ebd12a938ec25bcb5b731 Mon Sep 17 00:00:00 2001 From: Waylon Cude Date: Sat, 30 May 2026 22:21:56 -0700 Subject: [PATCH] Fixup cargo.toml to point to git again Oops --- Cargo.lock | 1 + Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c8b5d28..c78746f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -397,6 +397,7 @@ dependencies = [ [[package]] name = "fedichat" version = "0.1.0" +source = "git+https://git.firechicken.net/fedichat/fedichat-lib#49cbd905ceecb7bf7be463f81836742e3a7ddc24" dependencies = [ "serde", "serde_bytes", diff --git a/Cargo.toml b/Cargo.toml index 879bb3f..e58cddf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,8 @@ edition = "2024" [dependencies] quinn = "0.11.9" -#fedichat = {git = "https://git.firechicken.net/fedichat/fedichat-lib"} -fedichat = {path = "../fedichat-lib"} +fedichat = {git = "https://git.firechicken.net/fedichat/fedichat-lib"} +#fedichat = {path = "../fedichat-lib"} tracing = "0.1.44" tracing-subscriber = "0.3.23" clap = { version = "4.6.1", features = ["derive"] }