Skip to content

Commit

Permalink
Upgrade crates
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Jan 12, 2021
1 parent 022451a commit 4ea8328
Show file tree
Hide file tree
Showing 9 changed files with 173 additions and 178 deletions.
224 changes: 110 additions & 114 deletions Cargo.lock

Large diffs are not rendered by default.

41 changes: 20 additions & 21 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ path = "main.rs"
name = "denort"
path = "main_runtime.rs"


[[bench]]
name = "deno_bench"
harness = false
Expand All @@ -29,12 +28,12 @@ deno_core = { path = "../core", version = "0.75.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.18.0" }
deno_web = { path = "../op_crates/web", version = "0.26.0" }
deno_websocket = { path = "../op_crates/websocket", version = "0.1.0" }
regex = "1.3.9"
regex = "1.4.3"
serde = { version = "1.0.116", features = ["derive"] }

[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
winres = "0.1.11"

[dependencies]
deno_core = { path = "../core", version = "0.75.0" }
Expand All @@ -43,51 +42,51 @@ deno_lint = "0.2.15"
deno_runtime = { path = "../runtime", version = "0.5.0" }

atty = "0.2.14"
base64 = "0.12.3"
byteorder = "1.3.4"
base64 = "0.13.0"
byteorder = "1.4.2"
clap = "2.33.3"
dissimilar = "1.0.2"
dprint-plugin-typescript = "0.38.1"
encoding_rs = "0.8.24"
env_logger = "0.7.1"
filetime = "0.2.12"
http = "0.2.1"
indexmap = "1.6.0"
jsonc-parser = "0.14.0"
encoding_rs = "0.8.26"
env_logger = "0.8.2"
filetime = "0.2.13"
http = "0.2.3"
indexmap = "1.6.1"
jsonc-parser = "0.15.1"
lazy_static = "1.4.0"
libc = "0.2.77"
log = { version = "0.4.11", features = ["serde"] }
libc = "0.2.82"
log = { version = "0.4.13", features = ["serde"] }
lspower = "0.3.0"
notify = "5.0.0-pre.3"
notify = "5.0.0-pre.4"
percent-encoding = "2.1.0"
regex = "1.3.9"
regex = "1.4.3"
ring = "0.16.19"
rustyline = { version = "7.1.0", default-features = false }
rustyline-derive = "0.4.0"
semver-parser = "0.9.0"
semver-parser = "0.10.2"
serde = { version = "1.0.116", features = ["derive"] }
shell-escape = "0.1.5"
sourcemap = "6.0.1"
swc_bundler = "0.19.2"
swc_common = { version = "0.10.8", features = ["sourcemap"] }
swc_ecmascript = { version = "0.17.1", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] }
tempfile = "3.1.0"
termcolor = "1.1.0"
termcolor = "1.1.2"
tokio = { version = "1.0.1", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.1", features = ["v4"] }
uuid = { version = "0.8.2", features = ["v4"] }
walkdir = "2.3.1"

[target.'cfg(windows)'.dependencies]
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"] }

[target.'cfg(unix)'.dependencies]
nix = "0.19.0"
nix = "0.19.1"

[dev-dependencies]
# Used in benchmark
chrono = "0.4.15"
chrono = "0.4.19"
os_pipe = "0.9.2"
test_util = { path = "../test_util" }
tower-test = "0.4.0"
Expand Down
20 changes: 10 additions & 10 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
anyhow = "1.0.32"
futures = "0.3.8"
indexmap = "1.6.0"
anyhow = "1.0.38"
futures = "0.3.9"
indexmap = "1.6.1"
lazy_static = "1.4.0"
libc = "0.2.77"
log = "0.4.11"
libc = "0.2.82"
log = "0.4.13"
pin-project = "1.0.4"
rusty_v8 = "0.15.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
serde = { version = "1.0", features = ["derive"] }
smallvec = "1.4.2"
url = { version = "2.2", features = ["serde"] }
pin-project = "1.0.2"
serde = { version = "1.0.116", features = ["derive"] }
serde_json = { version = "1.0.61", features = ["preserve_order"] }
smallvec = "1.6.1"
url = { version = "2.2.0", features = ["serde"] }

[[example]]
name = "http_bench_bin_ops"
Expand Down
4 changes: 2 additions & 2 deletions op_crates/fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
bytes = "1"
bytes = "1.0.1"
deno_core = { version = "0.75.0", path = "../../core" }
reqwest = { version = "0.11.0", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }
tokio = { version = "1.0.1", features = ["full"] }
tokio-stream = "0.1.1"
tokio-util = "0.6.0"
tokio-util = "0.6.0"
2 changes: 1 addition & 1 deletion op_crates/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }

[dev-dependencies]
futures = "0.3.8"
futures = "0.3.9"
8 changes: 4 additions & 4 deletions op_crates/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ path = "lib.rs"

[dependencies]
deno_core = { version = "0.75.0", path = "../../core" }
http = "0.2.1"
http = "0.2.3"
serde = { version = "1.0.116", features = ["derive"] }
tokio = { version = "1.0.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.13.0"
serde = { version = "1.0.116", features = ["derive"] }
webpki = "0.21.3"
webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'.
webpki = "0.21.4"
webpki-roots = "0.21.0"
32 changes: 16 additions & 16 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,37 +37,37 @@ deno_websocket = { path = "../op_crates/websocket", version = "0.1.0" }

atty = "0.2.14"
dlopen = "0.1.8"
encoding_rs = "0.8.24"
env_logger = "0.7.1"
filetime = "0.2.12"
http = "0.2.1"
indexmap = "1.6.0"
encoding_rs = "0.8.26"
env_logger = "0.8.2"
filetime = "0.2.13"
http = "0.2.3"
hyper = { version = "0.14.2", features = ["server"] }
indexmap = "1.6.1"
lazy_static = "1.4.0"
libc = "0.2.77"
log = "0.4.11"
notify = "5.0.0-pre.3"
libc = "0.2.82"
log = "0.4.13"
notify = "5.0.0-pre.4"
percent-encoding = "2.1.0"
regex = "1.3.9"
regex = "1.4.3"
ring = "0.16.19"
rustyline = { version = "7.1.0", default-features = false }
rustyline-derive = "0.4.0"
serde = { version = "1.0.116", features = ["derive"] }
shell-escape = "0.1.5"
sys-info = "0.7.0"
termcolor = "1.1.0"
termcolor = "1.1.2"
tokio = { version = "1.0.1", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.1", features = ["v4"] }
hyper = { version = "0.14.2", features = ["server"] }
webpki = "0.21.3"
webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'.
uuid = { version = "0.8.2", features = ["v4"] }
webpki = "0.21.4"
webpki-roots = "0.21.0"

[target.'cfg(windows)'.dependencies]
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"] }

[target.'cfg(unix)'.dependencies]
nix = "0.19.0"
nix = "0.19.1"

[dev-dependencies]
# Used in benchmark
Expand Down
2 changes: 1 addition & 1 deletion test_plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
futures = "0.3.8"
deno_core = { path = "../core" }
futures = "0.3.9"

[dev-dependencies]
test_util = { path = "../test_util" }
18 changes: 9 additions & 9 deletions test_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ name = "test_server"
path = "src/test_server.rs"

[dependencies]
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
bytes = "1"
async-stream = "0.3.0"
bytes = "1.0.1"
futures = "0.3.9"
hyper = { version = "0.14.2", features = ["server", "http1", "runtime"] }
lazy_static = "1.4.0"
os_pipe = "0.9"
regex = "1.3.9"
os_pipe = "0.9.2"
regex = "1.4.3"
tempfile = "3.1.0"
hyper = { version = "0.14.2", features = ["server", "http1", "runtime"] }
tokio-tungstenite = "0.13"
tokio-rustls = "0.22"
async-stream = "0.3.0"
tokio = { version = "1.0.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = "0.13.0"

[target.'cfg(unix)'.dependencies]
pty = "0.2.2"

0 comments on commit 4ea8328

Please sign in to comment.