summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/Cargo.toml44
-rw-r--r--cli/build.rs2
-rw-r--r--cli/tsc.rs2
3 files changed, 24 insertions, 24 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 394ace96e..561308fd3 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -38,11 +38,11 @@ deno_websocket = { version = "0.55.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.45.0", path = "../ext/webstorage" }
regex = "=1.5.5"
serde = { version = "=1.0.136", features = ["derive"] }
-zstd = '=0.9.2'
+zstd = '=0.11.1'
[target.'cfg(windows)'.build-dependencies]
winapi = "=0.3.9"
-winres = "=0.1.11"
+winres = "=0.1.12"
[dependencies]
deno_ast = { version = "0.14.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
@@ -57,49 +57,49 @@ atty = "=0.2.14"
base64 = "=0.13.0"
cache_control = "=0.2.0"
chrono = "=0.4.19"
-clap = "=3.1.6"
-clap_complete = "=3.1.1"
-clap_complete_fig = "=3.1.4"
+clap = "=3.1.12"
+clap_complete = "=3.1.2"
+clap_complete_fig = "=3.1.5"
data-url = "=0.1.1"
-dissimilar = "=1.0.2"
+dissimilar = "=1.0.3"
dprint-plugin-json = "=0.15.2"
dprint-plugin-markdown = "=0.13.2"
dprint-plugin-typescript = "=0.68.2"
-encoding_rs = "=0.8.29"
-env_logger = "=0.8.4"
+encoding_rs = "=0.8.31"
+env_logger = "=0.9.0"
eszip = "=0.19.0"
-fancy-regex = "=0.7.1"
-http = "=0.2.4"
+fancy-regex = "=0.9.0"
+http = "=0.2.6"
import_map = "=0.9.0"
jsonc-parser = { version = "=0.19.0", features = ["serde"] }
-libc = "=0.2.121"
-log = { version = "=0.4.14", features = ["serde"] }
+libc = "=0.2.124"
+log = { version = "=0.4.16", features = ["serde"] }
mitata = '=0.0.6'
node_resolver = "=0.1.1"
notify = "=5.0.0-pre.14"
once_cell = "=1.10.0"
os_pipe = "=1.0.1"
percent-encoding = "=2.1.0"
-pin-project = "=1.0.8"
-rand = { version = "=0.8.4", features = ["small_rng"] }
+pin-project = "=1.0.10"
+rand = { version = "=0.8.5", features = ["small_rng"] }
regex = "=1.5.5"
ring = "=0.16.20"
rustyline = { version = "=9.1.2", default-features = false }
rustyline-derive = "=0.6.0"
-secure_tempfile = { version = "=3.2.0", package = "tempfile" } # different name to discourage use in tests
+secure_tempfile = { version = "=3.3.0", package = "tempfile" } # different name to discourage use in tests
semver-parser = "=0.10.2"
serde = { version = "=1.0.136", features = ["derive"] }
shell-escape = "=0.1.5"
text-size = "=1.1.0"
text_lines = "=0.4.1"
tokio = { version = "=1.17", features = ["full"] }
-tokio-util = "=0.7.0"
-tower-lsp = "=0.16.0"
+tokio-util = "=0.7.1"
+tower-lsp = "=0.17.0"
twox-hash = "=1.6.2"
typed-arena = "2.0.1"
-uuid = { version = "=0.8.2", features = ["v4", "serde"] }
+uuid = { version = "=1.0.0", features = ["v4", "serde"] }
walkdir = "=2.3.2"
-zstd = '=0.9.2'
+zstd = '=0.11.1'
[target.'cfg(windows)'.dependencies]
fwdansi = "=1.1.0"
@@ -109,10 +109,10 @@ winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase",
deno_bench_util = { version = "0.44.0", path = "../bench_util" }
flaky_test = "=0.1.0"
os_pipe = "=1.0.1"
-pretty_assertions = "=1.2.0"
+pretty_assertions = "=1.2.1"
test_util = { path = "../test_util" }
-trust-dns-client = "0.21.2"
-trust-dns-server = "0.21.2"
+trust-dns-client = "=0.21.2"
+trust-dns-server = "=0.21.2"
[target.'cfg(unix)'.dev-dependencies]
nix = "=0.23.0"
diff --git a/cli/build.rs b/cli/build.rs
index e5b626d76..89afe642c 100644
--- a/cli/build.rs
+++ b/cli/build.rs
@@ -52,7 +52,7 @@ fn create_snapshot(
);
vec.extend_from_slice(
- &zstd::block::compress(snapshot_slice, 22)
+ &zstd::bulk::compress(snapshot_slice, 22)
.expect("snapshot compression failed"),
);
diff --git a/cli/tsc.rs b/cli/tsc.rs
index 499360722..c39ed6c0d 100644
--- a/cli/tsc.rs
+++ b/cli/tsc.rs
@@ -59,7 +59,7 @@ pub static COMPILER_SNAPSHOT: Lazy<Box<[u8]>> = Lazy::new(
static COMPRESSED_COMPILER_SNAPSHOT: &[u8] =
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.bin"));
- zstd::block::decompress(
+ zstd::bulk::decompress(
&COMPRESSED_COMPILER_SNAPSHOT[4..],
u32::from_le_bytes(COMPRESSED_COMPILER_SNAPSHOT[0..4].try_into().unwrap())
as usize,