Skip to content

Commit 07a8169

Browse files
committed
Clean up formatting in Cargo.toml for improved readability
1 parent 7789322 commit 07a8169

File tree

1 file changed

+7
-31
lines changed

1 file changed

+7
-31
lines changed

Cargo.toml

Lines changed: 7 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -26,33 +26,16 @@ readme = "README.md"
2626
license = "Apache-2.0"
2727
edition = "2021"
2828
rust-version = "1.78"
29-
include = [
30-
"/src",
31-
"/datafusion",
32-
"/LICENSE.txt",
33-
"build.rs",
34-
"pyproject.toml",
35-
"Cargo.toml",
36-
"Cargo.lock",
37-
]
29+
include = ["/src", "/datafusion", "/LICENSE.txt", "build.rs", "pyproject.toml", "Cargo.toml", "Cargo.lock"]
3830

3931
[features]
4032
default = ["mimalloc"]
41-
protoc = ["datafusion-substrait/protoc"]
33+
protoc = [ "datafusion-substrait/protoc" ]
4234
substrait = ["dep:datafusion-substrait"]
4335

4436
[dependencies]
45-
tokio = { version = "1.45", features = [
46-
"macros",
47-
"rt",
48-
"rt-multi-thread",
49-
"sync",
50-
] }
51-
pyo3 = { version = "0.24", features = [
52-
"extension-module",
53-
"abi3",
54-
"abi3-py39",
55-
] }
37+
tokio = { version = "1.45", features = ["macros", "rt", "rt-multi-thread", "sync"] }
38+
pyo3 = { version = "0.24", features = ["extension-module", "abi3", "abi3-py39"] }
5639
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
5740
pyo3-log = "0.12.4"
5841
arrow = { version = "55.1.0", features = ["pyarrow"] }
@@ -62,23 +45,16 @@ datafusion-proto = { version = "49.0.2" }
6245
datafusion-ffi = { version = "49.0.2" }
6346
prost = "0.13.1" # keep in line with `datafusion-substrait`
6447
uuid = { version = "1.18", features = ["v4"] }
65-
mimalloc = { version = "0.1", optional = true, default-features = false, features = [
66-
"local_dynamic_tls",
67-
] }
48+
mimalloc = { version = "0.1", optional = true, default-features = false, features = ["local_dynamic_tls"] }
6849
async-trait = "0.1.89"
6950
futures = "0.3"
7051
cstr = "0.2"
71-
object_store = { version = "0.12.3", features = [
72-
"aws",
73-
"gcp",
74-
"azure",
75-
"http",
76-
] }
52+
object_store = { version = "0.12.3", features = ["aws", "gcp", "azure", "http"] }
7753
url = "2"
7854
log = "0.4.27"
7955

8056
[build-dependencies]
81-
prost-types = "0.13.1" # keep in line with `datafusion-substrait`
57+
prost-types = "0.13.1" # keep in line with `datafusion-substrait`
8258
pyo3-build-config = "0.24"
8359

8460
[lib]

0 commit comments

Comments
 (0)