diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 28 | ||||
-rw-r--r-- | cli/tests/integration_tests.rs | 4 |
2 files changed, 17 insertions, 15 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a7ebe3199..6b6db47f1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -27,7 +27,7 @@ path = "./bench/main.rs" deno_core = { path = "../core", version = "0.83.0" } deno_runtime = { path = "../runtime", version = "0.10.1" } regex = "1.4.3" -serde = { version = "1.0.123", features = ["derive"] } +serde = { version = "1.0.125", features = ["derive"] } [target.'cfg(windows)'.build-dependencies] winapi = "0.3.9" @@ -36,40 +36,40 @@ winres = "0.1.11" [dependencies] deno_core = { path = "../core", version = "0.83.0" } deno_doc = "0.1.23" -deno_lint = "0.2.19" +deno_lint = "0.2.20" deno_runtime = { path = "../runtime", version = "0.10.1" } atty = "0.2.14" base64 = "0.13.0" -byteorder = "1.4.2" +byteorder = "1.4.3" clap = "2.33.3" dissimilar = "1.0.2" dprint-plugin-json = "0.10.1" dprint-plugin-markdown = "0.6.2" dprint-plugin-typescript = "0.41.0" encoding_rs = "0.8.28" -env_logger = "0.8.2" +env_logger = "0.8.3" filetime = "0.2.14" http = "0.2.3" -indexmap = { version = "1.6.1", features = ["serde"] } +indexmap = { version = "1.6.2", features = ["serde"] } jsonc-parser = { version = "0.17.0", features = ["serde"] } lazy_static = "1.4.0" -libc = "0.2.86" +libc = "0.2.93" log = { version = "0.4.14", features = ["serde"] } -lspower = "0.8.4" -notify = "5.0.0-pre.4" +lspower = "1.0.0" +notify = "5.0.0-pre.6" percent-encoding = "2.1.0" -pin-project = "1.0.5" +pin-project = "1.0.6" regex = "1.4.3" ring = "0.16.20" rustyline = { version = "8.0.0", default-features = false } rustyline-derive = "0.4.0" semver-parser = "0.10.2" -serde = { version = "1.0.123", features = ["derive"] } +serde = { version = "1.0.125", features = ["derive"] } shell-escape = "0.1.5" sourcemap = "6.0.1" swc_bundler = "0.25.1" -swc_common = { version = "0.10.12", features = ["sourcemap"] } +swc_common = { version = "0.10.14", features = ["sourcemap"] } swc_ecmascript = { version = "0.24.1", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } tempfile = "3.2.0" termcolor = "1.1.2" @@ -77,7 +77,7 @@ text-size = "1.1.0" tokio = { version = "1.4.0", features = ["full"] } tokio-rustls = "0.22.0" uuid = { version = "0.8.2", features = ["v4"] } -walkdir = "2.3.1" +walkdir = "2.3.2" [target.'cfg(windows)'.dependencies] fwdansi = "1.1.0" @@ -89,8 +89,8 @@ chrono = "0.4.19" os_pipe = "0.9.2" test_util = { path = "../test_util" } tower-test = "0.4.0" -trust-dns-server = "0.20.0" -trust-dns-client = "0.20.0" +trust-dns-server = "0.20.1" +trust-dns-client = "0.20.1" [target.'cfg(unix)'.dev-dependencies] exec = "0.3.1" # Used in test_raw_tty diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 73fdcc994..dbebd11f1 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -4717,7 +4717,9 @@ console.log("finish"); /// Returns the next websocket message as a string ignoring /// Debugger.scriptParsed messages. async fn ws_read_msg( - socket: &mut tokio_tungstenite::WebSocketStream<tokio::net::TcpStream>, + socket: &mut tokio_tungstenite::WebSocketStream< + tokio_tungstenite::MaybeTlsStream<tokio::net::TcpStream>, + >, ) -> String { use deno_core::futures::stream::StreamExt; while let Some(msg) = socket.next().await { |