Skip to content

Commit

Permalink
MINOR: Add "fs" feature to "tokio", fix "features" typo. (#9210)
Browse files Browse the repository at this point in the history
* Initial commit

* Separate deps and dev deps

* Fix formatting
  • Loading branch information
mustafasrepo authored Feb 13, 2024
1 parent bd1c76c commit 60fbca9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pin-project-lite = "^0.2.7"
rand = { workspace = true }
sqlparser = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true, feature = ["rt-multi-thread", "parking_lot"] }
tokio = { workspace = true }
tokio-util = { version = "0.7.4", features = ["io"], optional = true }
url = { workspace = true }
uuid = { version = "1.0", features = ["v4"] }
Expand All @@ -118,6 +118,7 @@ rust_decimal = { version = "1.27.0", features = ["tokio-pg"] }
serde_json = { workspace = true }
test-utils = { path = "../../test-utils" }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot", "fs"] }
tokio-postgres = "0.7.7"
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
nix = { version = "0.27.1", features = ["fs"] }
Expand Down

0 comments on commit 60fbca9

Please sign in to comment.