From 6ed8ad4391c69fc56f14b2036943c46a121d5b0f Mon Sep 17 00:00:00 2001 From: Cole MacKenzie Date: Fri, 28 Jul 2023 13:57:08 -0700 Subject: [PATCH] chore: move deps to `[workspace.dependencies]` This commit moves a common set of dependencies from `rust/` and `python/` Cargo.toml files in favor of using the `workspace = true` variation. The goal of this commit if merely organization. Pruning features, bumping versions are not goals of this commit. - Closes #1572 --- Cargo.toml | 43 +++++++++++++++++++--- python/Cargo.toml | 25 ++++++++----- rust/Cargo.toml | 90 ++++++++++++++++++++++++++++++----------------- 3 files changed, 113 insertions(+), 45 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 20ca800768..1ced24b917 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,5 @@ [workspace] -members = [ - "rust", - "python", -] +members = ["rust", "python"] exclude = ["proofs", "delta-inspect"] [profile.release-with-debug] @@ -14,3 +11,41 @@ debug = true #