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 21, 2024
1 parent c932fb2 commit 2928f76
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions watchman/rust/watchman_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +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", "rt", "process"] }
tokio-util = { version = "0.6", features = ["codec"] }

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

[dev-dependencies]
clap = { version = "4.5.7", features = ["derive"] }
tokio = { version = "1.7.1", features = ["io-util", "net", "macros", "process", "rt-multi-thread", "test-util"] }
tokio-util = { version = "0.6", features = ["codec", "io"] }

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(fbcode_build)"] }

0 comments on commit 2928f76

Please sign in to comment.