Skip to content

Commit f8de1bd

Browse files
authored
move chrono out of optional deps so project can compile (#143)
1 parent acd974b commit f8de1bd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ version = "0.1.0"
1111
edition = "2021"
1212

1313
[dependencies]
14+
chrono = { version = "0.4.42" }
1415
datafusion = { workspace = true }
1516
datafusion-proto = { workspace = true }
1617
arrow-flight = "55.2.0"
@@ -38,7 +39,6 @@ parquet = { version = "55.2.0", optional = true }
3839
arrow = { version = "55.2.0", optional = true }
3940
tokio-stream = { version = "0.1.17", optional = true }
4041
hyper-util = { version = "0.1.16", optional = true }
41-
chrono = { version = "0.4.42", optional = true }
4242

4343
[features]
4444
integration = [
@@ -49,7 +49,6 @@ integration = [
4949
"arrow",
5050
"tokio-stream",
5151
"hyper-util",
52-
"chrono"
5352
]
5453

5554
tpch = ["integration"]

0 commit comments

Comments
 (0)