summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-12-07 01:43:09 +0100
committerGitHub <noreply@github.com>2021-12-07 01:43:09 +0100
commit5027826a6407c96a973155be0620b458ab74d974 (patch)
tree1897de993d4b05c32cb99fcb2c4a95d96e567fbe
parenta2f1357fe81fe212451567cc433c0e6b4a85edc5 (diff)
build: pin dependencies in cli crate (#12967)
-rw-r--r--Cargo.lock16
-rw-r--r--cli/Cargo.toml100
2 files changed, 58 insertions, 58 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2c400099e..6c0702d8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1069,9 +1069,9 @@ dependencies = [
[[package]]
name = "dissimilar"
-version = "1.0.3"
+version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "31ad93652f40969dead8d4bf897a41e9462095152eb21c56e5830537e41179dd"
+checksum = "fc4b29f4b9bb94bf267d57269fd0706d343a160937108e9619fe380645428abb"
[[package]]
name = "dlopen"
@@ -1728,9 +1728,9 @@ dependencies = [
[[package]]
name = "http"
-version = "0.2.5"
+version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
+checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
dependencies = [
"bytes",
"fnv",
@@ -2275,9 +2275,9 @@ dependencies = [
[[package]]
name = "nix"
-version = "0.22.2"
+version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3bb9a13fa32bc5aeb64150cd3f32d6cf4c748f8f8a417cce5d2eb976a8370ba"
+checksum = "e7555d6c7164cc913be1ce7f95cbecdabda61eb2ccd89008524af306fb7f5031"
dependencies = [
"bitflags",
"cc",
@@ -4865,9 +4865,9 @@ dependencies = [
[[package]]
name = "winres"
-version = "0.1.12"
+version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
+checksum = "ff4fb510bbfe5b8992ff15f77a2e6fe6cf062878f0eda00c0f44963a807ca5dc"
dependencies = [
"toml",
]
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 57cdc7b8b..4c3997332 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -31,12 +31,12 @@ deno_web = { version = "0.59.0", path = "../ext/web" }
deno_webgpu = { version = "0.29.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.33.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.23.0", path = "../ext/webstorage" }
-regex = "1.5.4"
-serde = { version = "1.0.129", features = ["derive"] }
+regex = "=1.5.4"
+serde = { version = "=1.0.130", features = ["derive"] }
[target.'cfg(windows)'.build-dependencies]
-winapi = "0.3.9"
-winres = "0.1.11"
+winapi = "=0.3.9"
+winres = "=0.1.11"
[dependencies]
deno_ast = { version = "0.5.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
@@ -46,60 +46,60 @@ deno_graph = "0.12.0"
deno_lint = { version = "0.19.0", features = ["docs"] }
deno_runtime = { version = "0.36.0", path = "../runtime" }
-atty = "0.2.14"
-base64 = "0.13.0"
-clap = "2.33.3"
-data-url = "0.1.0"
-dissimilar = "1.0.2"
-dprint-plugin-json = "0.13.2"
-dprint-plugin-markdown = "0.11.3"
-dprint-plugin-typescript = "0.59.2"
-encoding_rs = "0.8.29"
-env_logger = "0.8.4"
-fancy-regex = "0.7.1"
-http = "0.2.4"
-import_map = "0.3.3"
-jsonc-parser = { version = "0.17.0", features = ["serde"] }
-lazy_static = "1.4.0"
-libc = "0.2.106"
-log = { version = "0.4.14", features = ["serde"] }
-lspower = "1.4.0"
-notify = "5.0.0-pre.12"
-num_cpus = "1.13.0"
-once_cell = "1.8.0"
-percent-encoding = "2.1.0"
-pin-project = "1.0.8"
-rand = { version = "0.8.4", features = ["small_rng"] }
-regex = "1.5.4"
-ring = "0.16.20"
-rustyline = { version = "9.0.0", default-features = false }
-rustyline-derive = "0.5.0"
-semver-parser = "0.10.2"
-serde = { version = "1.0.129", features = ["derive"] }
-shell-escape = "0.1.5"
-sourcemap = "6.0.1"
-tempfile = "3.2.0"
-text-size = "1.1.0"
-tokio = { version = "1.10.1", features = ["full"] }
-uuid = { version = "0.8.2", features = ["v4", "serde"] }
-walkdir = "2.3.2"
+atty = "=0.2.14"
+base64 = "=0.13.0"
+clap = "=2.33.3"
+data-url = "=0.1.0"
+dissimilar = "=1.0.2"
+dprint-plugin-json = "=0.13.2"
+dprint-plugin-markdown = "=0.11.3"
+dprint-plugin-typescript = "=0.59.2"
+encoding_rs = "=0.8.29"
+env_logger = "=0.8.4"
+fancy-regex = "=0.7.1"
+http = "=0.2.4"
+import_map = "=0.3.3"
+jsonc-parser = { version = "=0.17.0", features = ["serde"] }
+lazy_static = "=1.4.0"
+libc = "=0.2.106"
+log = { version = "=0.4.14", features = ["serde"] }
+lspower = "=1.4.0"
+notify = "=5.0.0-pre.12"
+num_cpus = "=1.13.0"
+once_cell = "=1.8.0"
+percent-encoding = "=2.1.0"
+pin-project = "=1.0.8"
+rand = { version = "=0.8.4", features = ["small_rng"] }
+regex = "=1.5.4"
+ring = "=0.16.20"
+rustyline = { version = "=9.0.0", default-features = false }
+rustyline-derive = "=0.5.0"
+semver-parser = "=0.10.2"
+serde = { version = "=1.0.130", features = ["derive"] }
+shell-escape = "=0.1.5"
+sourcemap = "=6.0.1"
+tempfile = "=3.2.0"
+text-size = "=1.1.0"
+tokio = { version = "=1.14", features = ["full"] }
+uuid = { version = "=0.8.2", features = ["v4", "serde"] }
+walkdir = "=2.3.2"
[target.'cfg(windows)'.dependencies]
-fwdansi = "1.1.0"
-winapi = { version = "0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
+fwdansi = "=1.1.0"
+winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
[dev-dependencies]
# Used in benchmark
-chrono = "0.4.19"
-flaky_test = "0.1.0"
-os_pipe = "0.9.2"
-pretty_assertions = "0.7.2"
+chrono = "=0.4.19"
+flaky_test = "=0.1.0"
+os_pipe = "=0.9.2"
+pretty_assertions = "=0.7.2"
test_util = { path = "../test_util" }
-trust-dns-client = "0.20.3"
-trust-dns-server = "0.20.3"
+trust-dns-client = "=0.20.3"
+trust-dns-server = "=0.20.3"
[target.'cfg(unix)'.dev-dependencies]
-nix = "0.22.1"
+nix = "=0.22.1"
[package.metadata.winres]
# This section defines the metadata that appears in the deno.exe PE header.