From bd7c56dcffede12c7dd44fd67dc7ffe11522e487 Mon Sep 17 00:00:00 2001 From: raphael-goetz Date: Thu, 16 Oct 2025 18:03:55 +0200 Subject: [PATCH] fix: made definition reader a workspace dependency --- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 770173e..f069fb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,4 +21,4 @@ zip = "6.0.0" bytes = "1.10.1" [workspace.dependencies.code0-definition-reader] -path = "../code0-definition/reader/rust" +path = "reader/rust" \ No newline at end of file diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 887c299..9a7a128 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -10,7 +10,7 @@ readme = "../README.md" [dependencies] clap = { workspace = true, features = ["derive"] } -code0-definition-reader = { path = "../reader/rust" } +code0-definition-reader = { workspace = true } tucana = { workspace = true } colored = { workspace = true } tabled = { workspace = true }