Skip to content

Commit 86d8b77

Browse files
authored
chore: remove unused dependencies (#3451)
Removes unused deps based on https://github.com/bnjbvr/cargo-machete & https://github.com/Boshen/cargo-shear. Signed-off-by: Alexander Droste <[email protected]>
1 parent b343403 commit 86d8b77

File tree

17 files changed

+101
-338
lines changed

17 files changed

+101
-338
lines changed

Cargo.lock

Lines changed: 1 addition & 88 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,6 @@ features = ["wasm_js"]
225225
package = "getrandom"
226226
version = "0.3.1"
227227

228-
[workspace.dependencies.getrandom_v02]
229-
features = ["js"]
230-
package = "getrandom"
231-
version = "0.2.15"
232-
233228
[workspace.lints.rust]
234229
macro_use_extern_crate = "deny"
235230
redundant_lifetimes = "deny"

bench-vortex/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ datafusion = { workspace = true, features = [
3232
datafusion-common = { workspace = true }
3333
datafusion-physical-plan = { workspace = true }
3434
futures = { workspace = true }
35-
governor = { workspace = true }
3635
homedir = { workspace = true }
3736
humansize = { workspace = true }
3837
indicatif = { workspace = true }
@@ -45,7 +44,6 @@ opentelemetry-otlp = { workspace = true, features = ["trace"] }
4544
opentelemetry_sdk = { workspace = true }
4645
parquet = { workspace = true, features = ["async"] }
4746
rand = { workspace = true }
48-
rand_distr = { workspace = true }
4947
rayon = { workspace = true }
5048
regex = { workspace = true }
5149
reqwest = { workspace = true }
@@ -66,7 +64,6 @@ url = { workspace = true }
6664
uuid = { workspace = true, features = ["v4"] }
6765
vortex = { workspace = true, features = ["object_store", "parquet", "files"] }
6866
vortex-datafusion = { workspace = true }
69-
vortex-io = { workspace = true, features = ["tokio"] }
7067
xshell = { workspace = true }
7168

7269
[features]

encodings/datetime-parts/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ version = { workspace = true }
1717
workspace = true
1818

1919
[dependencies]
20-
getrandom_v02 = { workspace = true }
2120
prost = { workspace = true }
2221
vortex-array = { workspace = true }
2322
vortex-buffer = { workspace = true }

encodings/fastlanes/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ vortex-scalar = { workspace = true }
3535
[dev-dependencies]
3636
divan = { workspace = true }
3737
rand = { workspace = true }
38-
rstest = { workspace = true }
39-
rstest_reuse = { workspace = true }
4038
vortex-alp = { path = "../alp" }
4139
vortex-array = { workspace = true, features = ["test-harness"] }
4240
vortex-fastlanes = { path = ".", features = ["test-harness"] }

encodings/sequence/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ version = { workspace = true }
1515

1616
[dependencies]
1717
arcref = { workspace = true }
18-
itertools = { workspace = true }
1918
num-traits = { workspace = true }
2019
prost = { workspace = true }
2120
vortex-array = { workspace = true }

vortex-btrblocks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ version = { workspace = true }
1515

1616
[dependencies]
1717
arrow-buffer = { workspace = true }
18-
getrandom_v02 = { workspace = true }
18+
getrandom_v03 = { workspace = true }
1919
itertools = { workspace = true }
2020
log = { workspace = true }
2121
num-traits = { workspace = true }

vortex-datafusion/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@ object_store = { workspace = true }
2626
tokio = { workspace = true, features = ["rt-multi-thread", "fs"] }
2727
tokio-stream = { workspace = true }
2828
tracing = { workspace = true, optional = true }
29-
tracing-futures = { workspace = true, features = [
30-
"futures-03",
31-
], optional = true }
3229
vortex = { workspace = true, features = ["object_store"] }
3330

3431
[features]
35-
tracing = ["dep:tracing", "dep:tracing-futures", "vortex/tracing"]
32+
tracing = ["dep:tracing", "vortex/tracing"]
3633

3734
[dev-dependencies]
3835
anyhow = { workspace = true }

vortex-expr/Cargo.toml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ workspace = true
2020
dyn-hash = { workspace = true }
2121
itertools = { workspace = true }
2222
prost = { workspace = true, optional = true }
23-
prost-types = { workspace = true, optional = true }
2423
serde = { workspace = true, optional = true, features = ["derive"] }
25-
serde_json = { workspace = true, optional = true }
2624
vortex-array = { workspace = true }
2725
vortex-buffer = { workspace = true }
2826
vortex-dtype = { workspace = true }
@@ -35,17 +33,6 @@ vortex-scalar = { workspace = true }
3533
vortex-expr = { path = ".", features = ["test-harness"] }
3634

3735
[features]
38-
serde = [
39-
"dep:serde",
40-
"dep:serde_json",
41-
"vortex-dtype/serde",
42-
"vortex-error/serde",
43-
]
44-
proto = [
45-
"vortex-proto/expr",
46-
"vortex-error/prost",
47-
"dep:prost",
48-
"dep:prost-types",
49-
"serde",
50-
]
36+
serde = ["dep:serde", "vortex-dtype/serde", "vortex-error/serde"]
37+
proto = ["vortex-proto/expr", "vortex-error/prost", "dep:prost", "serde"]
5138
test-harness = []

vortex-file/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ tracing-futures = { workspace = true, features = [
3737
uuid = { workspace = true }
3838
vortex-alp = { workspace = true }
3939
vortex-array = { workspace = true }
40-
vortex-btrblocks = { workspace = true }
4140
vortex-buffer = { workspace = true }
4241
vortex-bytebool = { workspace = true }
4342
vortex-datetime-parts = { workspace = true }

0 commit comments

Comments
 (0)