summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-08-26 07:10:42 -0600
committerGitHub <noreply@github.com>2023-08-26 07:10:42 -0600
commitd104a09f796d3176ccd73a24906da87073cab85f (patch)
tree07f792ff8dd8ae150888fb9cad1164ab9b46f57c /Cargo.toml
parent5dbf5c82936a1975067101e25580790c8b7c50b7 (diff)
chore(core): bump and trim deps (#20265)
Skipping for a later follow-up: - base64: #20266 - notify - indexmap (will require follow-up in upstream projects)
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml36
1 files changed, 18 insertions, 18 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 287d808bb..2fe72de97 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -72,9 +72,10 @@ deno_websocket = { version = "0.122.0", path = "./ext/websocket" }
deno_webstorage = { version = "0.112.0", path = "./ext/webstorage" }
deno_napi = { version = "0.47.0", path = "./ext/napi" }
-aes = "=0.8.2"
+aes = "=0.8.3"
anyhow = "1.0.57"
-async-trait = "0.1.51"
+async-trait = "0.1.73"
+# TODO(mmastrac): Requires code changes to bump
base64 = "=0.13.1"
bencher = "0.1"
brotli = "3.3.4"
@@ -83,10 +84,10 @@ cache_control = "=0.2.0"
cbc = { version = "=0.1.2", features = ["alloc"] }
chrono = { version = "=0.4.26", default-features = false, features = ["std", "serde", "clock"] }
console_static_text = "=0.8.1"
-data-url = "=0.2.0"
+data-url = "=0.3.0"
dlopen = "0.1.8"
-encoding_rs = "=0.8.31"
-ecb = "=0.1.1"
+encoding_rs = "=0.8.33"
+ecb = "=0.1.2"
fastwebsockets = "=0.4.4"
filetime = "0.2.16"
flate2 = { version = "1.0.26", features = ["zlib-ng"], default-features = false }
@@ -97,7 +98,9 @@ hex = "0.4"
http = "0.2.9"
httparse = "1.8.0"
hyper = { version = "0.14.26", features = ["runtime", "http1"] }
-indexmap = { version = "1.9.2", features = ["serde"] }
+# TODO(mmastrac): indexmap 2.0 will require multiple synchronized changes
+indexmap1 = { package = "indexmap", version = "1", features = ["serde"] }
+indexmap = { version = "2", features = ["serde"] }
libc = "0.2.126"
log = "=0.4.20"
lsp-types = "=0.93.2" # used by tower-lsp and "proposed" feature is unstable in patch releases
@@ -105,7 +108,7 @@ memmem = "0.1.1"
notify = "=5.0.0"
num-bigint = { version = "0.4", features = ["rand"] }
once_cell = "1.17.1"
-os_pipe = "=1.0.1"
+os_pipe = "=1.1.4"
parking_lot = "0.12.0"
percent-encoding = "=2.3.0"
pin-project = "1.0.11" # don't pin because they yank crates from cargo
@@ -114,7 +117,7 @@ prost = "0.11"
prost-build = "0.11"
rand = "=0.8.5"
regex = "^1.7.0"
-lazy-regex = "2.5.0"
+lazy-regex = "3"
reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json"] }
ring = "=0.16.20"
rusqlite = { version = "=0.29.0", features = ["unlock_notify", "bundled"] }
@@ -126,23 +129,23 @@ webpki-roots = "0.25.2"
serde = { version = "1.0.149", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0.85"
-serde_repr = "=0.1.9"
+serde_repr = "=0.1.16"
sha2 = { version = "0.10.6", features = ["oid"] }
signature = "=1.6.4"
slab = "0.4"
smallvec = "1.8"
-socket2 = { version = "0.4.7", features = ["all"] }
-tar = "=0.4.38"
+socket2 = { version = "0.5.3", features = ["all"] }
+tar = "=0.4.40"
tempfile = "3.4.0"
thiserror = "1.0.40"
tokio = { version = "1.28.1", features = ["full"] }
-tokio-metrics = { version = "0.2.2", features = ["rt"] }
+tokio-metrics = { version = "0.3.0", features = ["rt"] }
tokio-rustls = "0.24.0"
tokio-util = "0.7.4"
tower-lsp = { version = "=0.17.0", features = ["proposed"] }
url = { version = "2.3.1", features = ["serde", "expose_internals"] }
uuid = { version = "1.3.0", features = ["v4"] }
-zstd = "=0.11.2"
+zstd = "=0.12.4"
elliptic-curve = { version = "0.13.4", features = ["alloc", "arithmetic", "ecdh", "std", "pem"] }
p224 = { version = "0.13.0", features = ["ecdh"] }
p256 = { version = "0.13.2", features = ["ecdh"] }
@@ -155,13 +158,10 @@ hkdf = "0.12.3"
# macros
proc-macro2 = "1"
quote = "1"
-syn = { version = "1", features = ["full", "extra-traits"] }
-syn2 = { package = "syn", version = "2.0", features = ["full", "extra-traits"] }
-# Temporary fork while we wait for a more modern version to be published
-deno-proc-macro-rules = "0.3.2"
+syn = { version = "2", features = ["full", "extra-traits"] }
# unix
-nix = "=0.24.2"
+nix = "=0.26.2"
# windows deps
fwdansi = "=1.1.0"