diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-11-22 21:07:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 21:07:35 +0100 |
commit | 13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch) | |
tree | 7455c069643f10bc9de5d6c8993defddeda378fd /test_util | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
Diffstat (limited to 'test_util')
-rw-r--r-- | test_util/Cargo.toml | 52 |
1 files changed, 27 insertions, 25 deletions
diff --git a/test_util/Cargo.toml b/test_util/Cargo.toml index ac3858499..45fa76881 100644 --- a/test_util/Cargo.toml +++ b/test_util/Cargo.toml @@ -3,42 +3,44 @@ [package] name = "test_util" version = "0.1.0" -authors = ["the Deno authors"] -edition = "2021" +authors.workspace = true +edition.workspace = true +license.workspace = true publish = false +repository.workspace = true [[bin]] name = "test_server" path = "src/test_server.rs" [dependencies] -anyhow = "1.0.57" +anyhow.workspace = true async-stream = "0.3.3" -atty = "0.2.14" -base64 = "0.13.0" -flate2 = "1.0.24" -futures = "0.3.21" -hyper = { version = "0.14.18", features = ["server", "http1", "http2", "runtime"] } +atty.workspace = true +base64.workspace = true +flate2.workspace = true +futures.workspace = true +hyper = { workspace = true, features = ["server", "http1", "http2", "runtime"] } lazy_static = "1.4.0" -once_cell = "1.10.0" -os_pipe = "1.0.1" -parking_lot = "0.12.0" -pretty_assertions = "1.3" -regex = "1.6.0" -reqwest = { version = "0.11.11", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks"] } -ring = "0.16.20" -rustls-pemfile = "1.0.0" -semver = "1.0" -serde = { version = "1.0.136", features = ["derive"] } -serde_json = "1.0.79" -tar = "0.4.38" -tokio = { version = "1.21", features = ["full"] } -tokio-rustls = "0.23" -tokio-tungstenite = "0.16" -url = { version = "2.3.1", features = ["serde", "expose_internals"] } +once_cell.workspace = true +os_pipe.workspace = true +parking_lot.workspace = true +pretty_assertions.workspace = true +regex.workspace = true +reqwest.workspace = true +ring.workspace = true +rustls-pemfile.workspace = true +semver.workspace = true +serde.workspace = true +serde_json.workspace = true +tar.workspace = true +tokio.workspace = true +tokio-rustls.workspace = true +tokio-tungstenite.workspace = true +url.workspace = true [target.'cfg(unix)'.dependencies] pty = "0.2.2" [target.'cfg(windows)'.dependencies] -winapi = { version = "0.3.9", features = ["consoleapi", "synchapi", "handleapi", "namedpipeapi", "winbase", "winerror"] } +winapi = { workspace = true, features = ["consoleapi", "synchapi", "handleapi", "namedpipeapi", "winbase", "winerror"] } |