Re-sync with internal repository
[hiphop-php.git] / third-party / watchman / src / watchman / rust / watchman_client / Cargo.toml
blob04e39dc91878a48e0e51419d4f2970a0ed3acaa9
1 [package]
2 name = "watchman_client"
3 version = "0.8.0"
4 authors = ["Wez Furlong"]
5 edition = "2021"
6 description = "a client for the Watchman file watching service"
7 documentation = "https://docs.rs/watchman_client"
8 repository = "https://github.com/facebook/watchman/"
9 license = "Apache-2.0"
10 exclude = ["examples/*"]
12 [dependencies]
13 anyhow = "1.0"
14 bytes = { version = "1.0", features = ["serde"] }
15 futures = { version = "0.3.13", features = ["async-await", "compat"] }
16 maplit = "1.0"
17 serde = { version = "1.0.126", features = ["derive", "rc"] }
18 serde_bser = { version = "0.3", path = "../serde_bser" }
19 thiserror = "1.0"
20 tokio = { version = "1.7.1", features = ["full", "test-util"] }
21 tokio-util = { version = "0.6", features = ["full"] }
23 [dev-dependencies]
24 structopt = "0.3"
26 [target.'cfg(windows)'.dependencies]
27 winapi = { version = "0.3", features = ["handleapi", "winuser"] }