This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new ed793f0de0 chore: clean up dependencies (#20861)
ed793f0de0 is described below

commit ed793f0de0377f1f6adef0c0d1953d49ce68e49d
Author: Oleks V <[email protected]>
AuthorDate: Wed Mar 11 08:26:19 2026 -0700

    chore: clean up dependencies (#20861)
    
    ## Which issue does this PR close?
    
    <!--
    We generally require a GitHub issue to be filed for all bug fixes and
    enhancements and this helps us generate change logs for our releases.
    You can link an issue to this PR using the GitHub syntax. For example
    `Closes #123` indicates that this PR will close issue #123.
    -->
    
    - Closes #.
    
    ## Rationale for this change
    
    Move dependencies from main area to dev
    
    <!--
    Why are you proposing this change? If this is already explained clearly
    in the issue then this section is not needed.
    Explaining clearly why changes are proposed helps reviewers understand
    your changes and offer better suggestions for fixes.
    -->
    
    ## What changes are included in this PR?
    
    <!--
    There is no need to duplicate the description in the issue here but it
    is sometimes worth providing a summary of the individual changes in this
    PR.
    -->
    
    ## Are these changes tested?
    
    <!--
    We typically require tests for all PRs in order to:
    1. Prevent the code from being accidentally broken by subsequent changes
    2. Serve as another way to document the expected behavior of the code
    
    If tests are not included in your PR, please explain why (for example,
    are they covered by existing tests)?
    -->
    
    ## Are there any user-facing changes?
    
    <!--
    If there are user-facing changes then we may require documentation to be
    updated before approving the PR.
    -->
    
    <!--
    If there are any breaking changes to public APIs, please add the `api
    change` label.
    -->
---
 datafusion/core/Cargo.toml            | 4 +---
 datafusion/datasource-json/Cargo.toml | 4 +++-
 datafusion/execution/Cargo.toml       | 2 +-
 datafusion/physical-expr/Cargo.toml   | 2 +-
 datafusion/pruning/Cargo.toml         | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml
index 9beb94497a..be507e0691 100644
--- a/datafusion/core/Cargo.toml
+++ b/datafusion/core/Cargo.toml
@@ -114,7 +114,6 @@ extended_tests = []
 arrow = { workspace = true }
 arrow-schema = { workspace = true, features = ["canonical_extension_types"] }
 async-trait = { workspace = true }
-bytes = { workspace = true }
 bzip2 = { workspace = true, optional = true }
 chrono = { workspace = true }
 datafusion-catalog = { workspace = true }
@@ -151,8 +150,6 @@ log = { workspace = true }
 object_store = { workspace = true }
 parking_lot = { workspace = true }
 parquet = { workspace = true, optional = true, default-features = true }
-rand = { workspace = true }
-regex = { workspace = true }
 serde = { version = "1.0", default-features = false, features = ["derive"], 
optional = true }
 sqlparser = { workspace = true, optional = true }
 tempfile = { workspace = true }
@@ -171,6 +168,7 @@ datafusion-functions-window-common = { workspace = true }
 datafusion-macros = { workspace = true }
 datafusion-physical-optimizer = { workspace = true }
 doc-comment = { workspace = true }
+bytes = { workspace = true }
 env_logger = { workspace = true }
 glob = { workspace = true }
 insta = { workspace = true }
diff --git a/datafusion/datasource-json/Cargo.toml 
b/datafusion/datasource-json/Cargo.toml
index bd0cead8d2..b5947ea5c4 100644
--- a/datafusion/datasource-json/Cargo.toml
+++ b/datafusion/datasource-json/Cargo.toml
@@ -44,7 +44,6 @@ datafusion-physical-plan = { workspace = true }
 datafusion-session = { workspace = true }
 futures = { workspace = true }
 object_store = { workspace = true }
-serde_json = { workspace = true }
 tokio = { workspace = true }
 tokio-stream = { workspace = true, features = ["sync"] }
 
@@ -54,6 +53,9 @@ tokio-stream = { workspace = true, features = ["sync"] }
 [lints]
 workspace = true
 
+[dev-dependencies]
+serde_json = { workspace = true }
+
 [lib]
 name = "datafusion_datasource_json"
 path = "src/mod.rs"
diff --git a/datafusion/execution/Cargo.toml b/datafusion/execution/Cargo.toml
index c8371d2edd..06c84d8acb 100644
--- a/datafusion/execution/Cargo.toml
+++ b/datafusion/execution/Cargo.toml
@@ -55,7 +55,6 @@ sql = []
 arrow = { workspace = true }
 arrow-buffer = { workspace = true }
 async-trait = { workspace = true }
-chrono = { workspace = true }
 dashmap = { workspace = true }
 datafusion-common = { workspace = true, default-features = false }
 datafusion-expr = { workspace = true, default-features = false }
@@ -70,4 +69,5 @@ tempfile = { workspace = true }
 url = { workspace = true }
 
 [dev-dependencies]
+chrono = { workspace = true }
 insta = { workspace = true }
diff --git a/datafusion/physical-expr/Cargo.toml 
b/datafusion/physical-expr/Cargo.toml
index 7e61be3a16..7a52441477 100644
--- a/datafusion/physical-expr/Cargo.toml
+++ b/datafusion/physical-expr/Cargo.toml
@@ -55,7 +55,6 @@ hashbrown = { workspace = true }
 indexmap = { workspace = true }
 itertools = { workspace = true, features = ["use_std"] }
 parking_lot = { workspace = true }
-paste = { workspace = true }
 petgraph = "0.8.3"
 recursive = { workspace = true, optional = true }
 tokio = { workspace = true }
@@ -66,6 +65,7 @@ arrow = { workspace = true, features = ["test_utils"] }
 criterion = { workspace = true }
 datafusion-functions = { workspace = true }
 insta = { workspace = true }
+paste = { workspace = true }
 rand = { workspace = true }
 rstest = { workspace = true }
 
diff --git a/datafusion/pruning/Cargo.toml b/datafusion/pruning/Cargo.toml
index bd898cba20..e6f4bb6f27 100644
--- a/datafusion/pruning/Cargo.toml
+++ b/datafusion/pruning/Cargo.toml
@@ -23,10 +23,10 @@ datafusion-expr-common = { workspace = true, 
default-features = true }
 datafusion-physical-expr = { workspace = true }
 datafusion-physical-expr-common = { workspace = true }
 datafusion-physical-plan = { workspace = true }
-itertools = { workspace = true }
 log = { workspace = true }
 
 [dev-dependencies]
 datafusion-expr = { workspace = true }
 datafusion-functions-nested = { workspace = true }
 insta = { workspace = true }
+itertools = { workspace = true }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to