Skip to content

Commit 6eba166

Browse files
Taplo
1 parent 4d33f68 commit 6eba166

5 files changed

Lines changed: 51 additions & 51 deletions

File tree

Cargo.toml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -14,67 +14,67 @@ version = "0.2.2"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
arrow-flight = { version = "54", features = [
17+
arrow-flight = { features = [
1818
"flight-sql-experimental",
19-
], optional = true }
20-
axum = { version = "0.7.9", features = ["macros"], optional = true }
21-
clap = { version = "4.5.27", features = ["derive"] }
19+
], optional = true, version = "54" }
20+
axum = { features = ["macros"], optional = true, version = "0.7.9" }
21+
clap = { features = ["derive"], version = "4.5.27" }
2222
color-eyre = "0.6.3"
23-
crossterm = { version = "0.28.1", features = ["event-stream"] }
23+
crossterm = { features = ["event-stream"], version = "0.28.1" }
2424
datafusion = { version = "46" }
25-
datafusion-app = { version = "0.1.0", path = "crates/datafusion-app" }
25+
datafusion-app = { path = "crates/datafusion-app", version = "0.1.0" }
2626
directories = "5.0.1"
2727
env_logger = "0.11.5"
2828
futures = "0.3.30"
2929
http = "1"
3030
http-body = "1"
3131
itertools = "0.13.0"
32-
jiff = { version = "0.2.5", optional = true }
32+
jiff = { optional = true, version = "0.2.5" }
3333
lazy_static = "1.4.0"
3434
log = "0.4.22"
35-
metrics = { version = "0.24.0", optional = true }
36-
metrics-exporter-prometheus = { version = "0.16.0", optional = true }
35+
metrics = { optional = true, version = "0.24.0" }
36+
metrics-exporter-prometheus = { optional = true, version = "0.16.0" }
3737
object_store = "0.11.2"
3838
parquet = "54"
3939
pin-project-lite = { version = "0.2.14" }
4040
prost = "0.13.1"
4141
ratatui = "0.28.0"
42-
serde = { version = "1.0.197", features = ["derive"] }
42+
serde = { features = ["derive"], version = "1.0.197" }
4343
strum = "0.26.2"
44-
tokio = { version = "1.36.0", features = [
44+
tokio = { features = [
4545
"macros",
4646
"process",
4747
"rt-multi-thread",
4848
"signal",
49-
] }
50-
tokio-stream = { version = "0.1.15", features = ["net"] }
49+
], version = "1.36.0" }
50+
tokio-stream = { features = ["net"], version = "0.1.15" }
5151
tokio-util = "0.7.10"
5252
toml = "0.8.12"
53-
tonic = { version = "0.12.3", optional = true }
53+
tonic = { optional = true, version = "0.12.3" }
5454
tower = { version = "0.5.0" }
55-
tower-http = { version = "0.6.2", features = [
55+
tower-http = { features = [
5656
"auth",
5757
"timeout",
5858
"trace",
59-
], optional = true }
59+
], optional = true, version = "0.6.2" }
6060
tpchgen = "1.1"
6161
tpchgen-arrow = "1.1"
62-
tracing = { version = "0.1.41", features = ["log"] }
63-
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
64-
tui-logger = { version = "0.12", features = ["tracing-support"] }
65-
tui-textarea = { version = "0.6.1", features = ["search"] }
66-
url = { version = "2.5.2", features = ["serde"] }
67-
uuid = { version = "1.10.0", optional = true }
62+
tracing = { features = ["log"], version = "0.1.41" }
63+
tracing-subscriber = { features = ["env-filter"], version = "0.3.19" }
64+
tui-logger = { features = ["tracing-support"], version = "0.12" }
65+
tui-textarea = { features = ["search"], version = "0.6.1" }
66+
url = { features = ["serde"], version = "2.5.2" }
67+
uuid = { optional = true, version = "1.10.0" }
6868

6969
[dev-dependencies]
7070
assert_cmd = "2.0.16"
71-
datafusion-udfs-wasm = { version = "0.1.0", path = "crates/datafusion-udfs-wasm", features = [
71+
datafusion-udfs-wasm = { features = [
7272
"serde",
73-
] }
73+
], path = "crates/datafusion-udfs-wasm", version = "0.1.0" }
7474
http-body-util = "0.1.3"
75-
insta = { version = "1.40.0", features = ["yaml"] }
75+
insta = { features = ["yaml"], version = "1.40.0" }
7676
predicates = "3.1.2"
77-
reqwest = { version = "0.12.14", features = ["json"] }
77+
reqwest = { features = ["json"], version = "0.12.14" }
7878
serde_json = "1.0.140"
7979
tempfile = "3.2.0"
8080
url = "2.5.2"

crates/datafusion-app/Cargo.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,39 @@ version = "0.1.0"
66
# Leaving Hudi and Iceberg around in case traction on those picks up. It would be better if I just remove them from main and create PRs with the diff - maybe ill get around to that.
77

88
[dependencies]
9-
arrow-flight = { version = "54", features = [
9+
arrow-flight = { features = [
1010
"flight-sql-experimental",
11-
], optional = true }
11+
], optional = true, version = "54" }
1212
async-trait = "0.1.80"
13-
base64 = { version = "0.22.1", optional = true }
13+
base64 = { optional = true, version = "0.22.1" }
1414
color-eyre = "0.6.3"
1515
datafusion = "46"
16-
datafusion-functions-json = { version = "0.46", optional = true }
17-
datafusion-functions-parquet = { version = "0.1.0", path = "../datafusion-functions-parquet", optional = true }
18-
datafusion-udfs-wasm = { version = "0.1.0", path = "../datafusion-udfs-wasm", features = [
16+
datafusion-functions-json = { optional = true, version = "0.46" }
17+
datafusion-functions-parquet = { optional = true, path = "../datafusion-functions-parquet", version = "0.1.0" }
18+
datafusion-udfs-wasm = { features = [
1919
"serde",
20-
], optional = true }
21-
deltalake = { version = "0.25", features = ["datafusion"], optional = true }
20+
], optional = true, path = "../datafusion-udfs-wasm", version = "0.1.0" }
21+
deltalake = { features = ["datafusion"], optional = true, version = "0.25" }
2222
directories = "5.0.1"
2323
futures = "0.3.30"
24-
indexmap = { version = "2.8.0", features = ["serde"] }
24+
indexmap = { features = ["serde"], version = "2.8.0" }
2525
itertools = "0.13.0"
2626
log = "0.4.22"
2727
num_cpus = "1.16.0"
28-
object_store = { version = "0.11.0", features = ["aws"], optional = true }
29-
object_store_opendal = { version = "0.49", optional = true }
30-
opendal = { version = "0.51", features = [
28+
object_store = { features = ["aws"], optional = true, version = "0.11.0" }
29+
object_store_opendal = { optional = true, version = "0.49" }
30+
opendal = { features = [
3131
"services-huggingface",
32-
], optional = true }
32+
], optional = true, version = "0.51" }
3333
parking_lot = "0.12.3"
34-
serde = { version = "1.0.197", features = ["derive"] }
35-
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
36-
tokio-stream = { version = "0.1.15", features = ["net"] }
37-
tonic = { version = "0.12.3", optional = true }
38-
url = { version = "2.5.2", optional = true }
34+
serde = { features = ["derive"], version = "1.0.197" }
35+
tokio = { features = ["macros", "rt-multi-thread"], version = "1.36.0" }
36+
tokio-stream = { features = ["net"], version = "0.1.15" }
37+
tonic = { optional = true, version = "0.12.3" }
38+
url = { optional = true, version = "2.5.2" }
3939

4040
[dev-dependencies]
41-
criterion = { version = "0.5.1", features = ["async_tokio"] }
41+
criterion = { features = ["async_tokio"], version = "0.5.1" }
4242

4343
[features]
4444
default = ["functions-parquet"]

crates/datafusion-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ name = "datafusion-auth"
44
version = "0.1.0"
55

66
[dependencies]
7-
tower-http = { version = "0.5.0", features = ["auth"] }
7+
tower-http = { features = ["auth"], version = "0.5.0" }

crates/datafusion-functions-parquet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ version = "0.1.0"
1414
arrow = { version = "54" }
1515
async-trait = "0.1.41"
1616
datafusion = { version = "46" }
17-
parquet = { version = "54", default-features = false }
17+
parquet = { default-features = false, version = "54" }

crates/datafusion-udfs-wasm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ name = "datafusion-udfs-wasm"
44
version = "0.1.0"
55

66
[dependencies]
7-
datafusion = { version = "46", default-features = false }
7+
datafusion = { default-features = false, version = "46" }
88
log = "0.4.25"
9-
serde = { version = "1.0.217", optional = true }
9+
serde = { optional = true, version = "1.0.217" }
1010
wasi-common = "29.0.1"
1111
wasmtime = "29.0.1"
1212

1313
[dev-dependencies]
14-
criterion = { version = "0.5", features = ["html_reports"] }
15-
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
14+
criterion = { features = ["html_reports"], version = "0.5" }
15+
tokio = { features = ["macros", "rt-multi-thread"], version = "1.36.0" }
1616

1717
[features]
1818
serde = ["dep:serde"]

0 commit comments

Comments
 (0)