From f8e63328d88f9027d5b45048d191e0b1e5450bb4 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Thu, 21 Dec 2023 16:41:31 +0100 Subject: [PATCH] Expand the workspace `members` in `Cargo.toml` (#11387) While the `cargo` tools will include crates we depend on in the directory into the workspace, I observed dependabot not taking all of our crates into account in its version bump attempts leading to duplication of outside dependencies. e.g. - https://github.com/nushell/nushell/pull/11039 --- Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6ef6e0ef64..3685d5a29e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,11 @@ members = [ "crates/nu-cmd-lang", "crates/nu-cmd-dataframe", "crates/nu-command", + "crates/nu-color-config", + "crates/nu-explore", + "crates/nu-json", "crates/nu-lsp", + "crates/nu-pretty-hex", "crates/nu-protocol", "crates/nu-plugin", "crates/nu_plugin_inc", @@ -43,6 +47,8 @@ members = [ "crates/nu_plugin_custom_values", "crates/nu_plugin_formats", "crates/nu-std", + "crates/nu-table", + "crates/nu-term-grid", "crates/nu-utils", ] @@ -68,6 +74,7 @@ nu-table = { path = "./crates/nu-table", version = "0.88.2" } nu-term-grid = { path = "./crates/nu-term-grid", version = "0.88.2" } nu-std = { path = "./crates/nu-std", version = "0.88.2" } nu-utils = { path = "./crates/nu-utils", version = "0.88.2" } + nu-ansi-term = "0.49.0" reedline = { version = "0.27.0", features = ["bashisms", "sqlite"] }