Skip to content

Commit

Permalink
Minimize the set of tokio features that need to be enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
matts1 committed Nov 14, 2024
1 parent c932fb2 commit 8d1b31a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions watchman/rust/watchman_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,16 @@ maplit = "1.0"
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_bser = { version = "0.4", path = "../serde_bser" }
thiserror = "1.0"
tokio = { version = "1.7.1", features = ["full", "test-util"] }
tokio-util = { version = "0.6", features = ["full"] }
tokio = {
version = "1.7.1",
features = [
"io-util",
"net",
"process",
"test-util"
]
}
tokio-util = { version = "0.6", features = ["codec"] }

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "handleapi", "winbase", "winuser"] }
Expand Down

0 comments on commit 8d1b31a

Please sign in to comment.