1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 13:00:36 -05:00

build: pin dependencies in cli crate (#12967)

This commit is contained in:
Bartek Iwańczuk 2021-12-07 01:43:09 +01:00 committed by GitHub
parent a2f1357fe8
commit 5027826a64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 58 additions and 58 deletions

16
Cargo.lock generated
View file

@ -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",
]

View file

@ -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.