From 22eaae799da8202dc9237117995e3a9120fb59b0 Mon Sep 17 00:00:00 2001 From: Sam Dasilva Date: Wed, 20 Aug 2025 13:43:02 -0400 Subject: [PATCH] fix: Apply local changes to in lowell-core crate Without this change, lowell-cli still references the cargo.io crate instead of your local changes. Shouldn't affect the cargo publish process. Signed-off-by: Sam Dasilva --- Cargo.lock | 16 +--------------- Cargo.toml | 4 ++++ 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3b8f80..22d96a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -269,7 +269,7 @@ version = "0.0.1" dependencies = [ "anyhow", "clap", - "lowell-core 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lowell-core", "serde", "serde_json", "tracing", @@ -289,20 +289,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "lowell-core" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a84fc13574332db7c1287819bf9b2f0b98c4d1f1e67467a95589116dd839a34" -dependencies = [ - "anyhow", - "goblin", - "rs-release", - "serde", - "sha2", - "tracing", -] - [[package]] name = "matchers" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 66e430d..3f68d44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,7 @@ [workspace] members = ["lowell-cli", "lowell-core"] resolver = "2" + +# Local dev override: use the path crate instead of crates.io +[patch.crates-io] +lowell-core = { path = "lowell-core" }