Skip to content

Commit ed793f0

Browse files
authored
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. -->
1 parent 95a3dfd commit ed793f0

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

datafusion/core/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ extended_tests = []
114114
arrow = { workspace = true }
115115
arrow-schema = { workspace = true, features = ["canonical_extension_types"] }
116116
async-trait = { workspace = true }
117-
bytes = { workspace = true }
118117
bzip2 = { workspace = true, optional = true }
119118
chrono = { workspace = true }
120119
datafusion-catalog = { workspace = true }
@@ -151,8 +150,6 @@ log = { workspace = true }
151150
object_store = { workspace = true }
152151
parking_lot = { workspace = true }
153152
parquet = { workspace = true, optional = true, default-features = true }
154-
rand = { workspace = true }
155-
regex = { workspace = true }
156153
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
157154
sqlparser = { workspace = true, optional = true }
158155
tempfile = { workspace = true }
@@ -171,6 +168,7 @@ datafusion-functions-window-common = { workspace = true }
171168
datafusion-macros = { workspace = true }
172169
datafusion-physical-optimizer = { workspace = true }
173170
doc-comment = { workspace = true }
171+
bytes = { workspace = true }
174172
env_logger = { workspace = true }
175173
glob = { workspace = true }
176174
insta = { workspace = true }

datafusion/datasource-json/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ datafusion-physical-plan = { workspace = true }
4444
datafusion-session = { workspace = true }
4545
futures = { workspace = true }
4646
object_store = { workspace = true }
47-
serde_json = { workspace = true }
4847
tokio = { workspace = true }
4948
tokio-stream = { workspace = true, features = ["sync"] }
5049

@@ -54,6 +53,9 @@ tokio-stream = { workspace = true, features = ["sync"] }
5453
[lints]
5554
workspace = true
5655

56+
[dev-dependencies]
57+
serde_json = { workspace = true }
58+
5759
[lib]
5860
name = "datafusion_datasource_json"
5961
path = "src/mod.rs"

datafusion/execution/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ sql = []
5555
arrow = { workspace = true }
5656
arrow-buffer = { workspace = true }
5757
async-trait = { workspace = true }
58-
chrono = { workspace = true }
5958
dashmap = { workspace = true }
6059
datafusion-common = { workspace = true, default-features = false }
6160
datafusion-expr = { workspace = true, default-features = false }
@@ -70,4 +69,5 @@ tempfile = { workspace = true }
7069
url = { workspace = true }
7170

7271
[dev-dependencies]
72+
chrono = { workspace = true }
7373
insta = { workspace = true }

datafusion/physical-expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ hashbrown = { workspace = true }
5555
indexmap = { workspace = true }
5656
itertools = { workspace = true, features = ["use_std"] }
5757
parking_lot = { workspace = true }
58-
paste = { workspace = true }
5958
petgraph = "0.8.3"
6059
recursive = { workspace = true, optional = true }
6160
tokio = { workspace = true }
@@ -66,6 +65,7 @@ arrow = { workspace = true, features = ["test_utils"] }
6665
criterion = { workspace = true }
6766
datafusion-functions = { workspace = true }
6867
insta = { workspace = true }
68+
paste = { workspace = true }
6969
rand = { workspace = true }
7070
rstest = { workspace = true }
7171

datafusion/pruning/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ datafusion-expr-common = { workspace = true, default-features = true }
2323
datafusion-physical-expr = { workspace = true }
2424
datafusion-physical-expr-common = { workspace = true }
2525
datafusion-physical-plan = { workspace = true }
26-
itertools = { workspace = true }
2726
log = { workspace = true }
2827

2928
[dev-dependencies]
3029
datafusion-expr = { workspace = true }
3130
datafusion-functions-nested = { workspace = true }
3231
insta = { workspace = true }
32+
itertools = { workspace = true }

0 commit comments

Comments
 (0)