summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/broadcast_channel/Cargo.toml2
-rw-r--r--ext/crypto/Cargo.toml2
-rw-r--r--ext/crypto/lib.rs4
-rw-r--r--ext/fetch/Cargo.toml10
-rw-r--r--ext/ffi/Cargo.toml2
-rw-r--r--ext/http/Cargo.toml12
-rw-r--r--ext/net/Cargo.toml6
-rw-r--r--ext/tls/Cargo.toml6
-rw-r--r--ext/url/Cargo.toml2
-rw-r--r--ext/web/Cargo.toml6
-rw-r--r--ext/websocket/Cargo.toml10
-rw-r--r--ext/webstorage/Cargo.toml2
12 files changed, 32 insertions, 32 deletions
diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml
index 760433201..f6db4df8e 100644
--- a/ext/broadcast_channel/Cargo.toml
+++ b/ext/broadcast_channel/Cargo.toml
@@ -17,4 +17,4 @@ path = "lib.rs"
async-trait = "0.1"
deno_core = { version = "0.132.0", path = "../../core" }
tokio = { version = "1.17", features = ["full"] }
-uuid = { version = "0.8.2", features = ["v4"] }
+uuid = { version = "1.0.0", features = ["v4"] }
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index a7454ad24..8da99c983 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -36,4 +36,4 @@ sha-1 = "0.9.7"
sha2 = "0.9.5"
spki = "0.4.1"
tokio = { version = "1.17", features = ["full"] }
-uuid = { version = "0.8.2", features = ["v4"] }
+uuid = { version = "1.0.0", features = ["v4"] }
diff --git a/ext/crypto/lib.rs b/ext/crypto/lib.rs
index 3515013f8..6063be1bd 100644
--- a/ext/crypto/lib.rs
+++ b/ext/crypto/lib.rs
@@ -792,8 +792,8 @@ pub fn op_crypto_random_uuid(state: &mut OpState) -> Result<String, AnyError> {
let mut bytes = [0u8; 16];
seeded_rng.fill(&mut bytes);
uuid::Builder::from_bytes(bytes)
- .set_version(uuid::Version::Random)
- .build()
+ .with_version(uuid::Version::Random)
+ .into_uuid()
} else {
uuid::Uuid::new_v4()
};
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml
index 39261d075..3f65b9ee8 100644
--- a/ext/fetch/Cargo.toml
+++ b/ext/fetch/Cargo.toml
@@ -15,13 +15,13 @@ path = "lib.rs"
[dependencies]
bytes = "1.1.0"
-data-url = "0.1.0"
+data-url = "0.1.1"
deno_core = { version = "0.132.0", path = "../../core" }
deno_tls = { version = "0.37.0", path = "../tls" }
dyn-clone = "1"
-http = "0.2.4"
+http = "0.2.6"
reqwest = { version = "0.11.10", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
-serde = { version = "1.0.129", features = ["derive"] }
+serde = { version = "1.0.136", features = ["derive"] }
tokio = { version = "1.17", features = ["full"] }
-tokio-stream = "0.1.7"
-tokio-util = { version = "0.7.0", features = ["io"] }
+tokio-stream = "0.1.8"
+tokio-util = { version = "0.7.1", features = ["io"] }
diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml
index 60a0a4aa3..d86dfc88f 100644
--- a/ext/ffi/Cargo.toml
+++ b/ext/ffi/Cargo.toml
@@ -16,7 +16,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.132.0", path = "../../core" }
dlopen = "0.1.8"
-libffi = "2.0.0"
+libffi = "3.0.0"
serde = { version = "1.0.129", features = ["derive"] }
tokio = { version = "1.17", features = ["full"] }
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index 68b94284e..b8773e3f6 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -18,23 +18,23 @@ name = "compressible"
harness = false
[dependencies]
-async-compression = { version = "0.3.1", features = ["tokio", "brotli", "gzip"] }
+async-compression = { version = "0.3.12", features = ["tokio", "brotli", "gzip"] }
base64 = "0.13.0"
-brotli = "3.3.3"
+brotli = "3.3.4"
bytes = "1"
cache_control = "0.2.0"
deno_core = { version = "0.132.0", path = "../../core" }
deno_websocket = { version = "0.55.0", path = "../websocket" }
-flate2 = "1.0.22"
+flate2 = "1.0.23"
fly-accept-encoding = "0.2.0-alpha.5"
-hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
+hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
mime = "0.3.16"
percent-encoding = "2.1.0"
phf = { version = "0.10", features = ["macros"] }
ring = "0.16.20"
-serde = { version = "1.0.129", features = ["derive"] }
+serde = { version = "1.0.136", features = ["derive"] }
tokio = { version = "1.17", features = ["full"] }
-tokio-util = { version = "0.7.0", features = ["io"] }
+tokio-util = { version = "0.7.1", features = ["io"] }
[dev-dependencies]
bencher = "0.1"
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 18e3636e3..0615cdc9e 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -16,9 +16,9 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.132.0", path = "../../core" }
deno_tls = { version = "0.37.0", path = "../tls" }
-log = "0.4.14"
-serde = { version = "1.0.129", features = ["derive"] }
-socket2 = "0.4.2"
+log = "0.4.16"
+serde = { version = "1.0.136", features = ["derive"] }
+socket2 = "0.4.4"
tokio = { version = "1.17", features = ["full"] }
trust-dns-proto = "=0.21.2"
trust-dns-resolver = { version = "=0.21.2", features = ["tokio-runtime", "serde-config"] }
diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml
index 13554e509..19f406ddd 100644
--- a/ext/tls/Cargo.toml
+++ b/ext/tls/Cargo.toml
@@ -17,8 +17,8 @@ path = "lib.rs"
deno_core = { version = "0.132.0", path = "../../core" }
once_cell = "1.10.0"
rustls = { version = "0.20", features = ["dangerous_configuration"] }
-rustls-native-certs = "0.6.1"
-rustls-pemfile = "0.3"
-serde = { version = "1.0.129", features = ["derive"] }
+rustls-native-certs = "0.6.2"
+rustls-pemfile = "1.0.0"
+serde = { version = "1.0.136", features = ["derive"] }
webpki = "0.22"
webpki-roots = "0.22"
diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml
index b9876fef0..1219f4f8d 100644
--- a/ext/url/Cargo.toml
+++ b/ext/url/Cargo.toml
@@ -15,7 +15,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.132.0", path = "../../core" }
-serde = { version = "1.0.129", features = ["derive"] }
+serde = { version = "1.0.136", features = ["derive"] }
serde_repr = "0.1.7"
urlpattern = "0.1.6"
diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml
index 80348c91b..e32bbf339 100644
--- a/ext/web/Cargo.toml
+++ b/ext/web/Cargo.toml
@@ -17,11 +17,11 @@ path = "lib.rs"
async-trait = "0.1.51"
base64 = "0.13.0"
deno_core = { version = "0.132.0", path = "../../core" }
-encoding_rs = "0.8.29"
+encoding_rs = "0.8.31"
flate2 = "1"
-serde = "1.0.129"
+serde = "1.0.136"
tokio = { version = "1.17", features = ["full"] }
-uuid = { version = "0.8.2", features = ["v4", "serde"] }
+uuid = { version = "1.0.0", features = ["v4", "serde"] }
[dev-dependencies]
deno_bench_util = { version = "0.44.0", path = "../../bench_util" }
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml
index 6a858fc07..187280388 100644
--- a/ext/websocket/Cargo.toml
+++ b/ext/websocket/Cargo.toml
@@ -16,9 +16,9 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.132.0", path = "../../core" }
deno_tls = { version = "0.37.0", path = "../tls" }
-http = "0.2.4"
-hyper = { version = "0.14.12" }
-serde = { version = "1.0.129", features = ["derive"] }
+http = "0.2.6"
+hyper = { version = "0.14.18" }
+serde = { version = "1.0.136", features = ["derive"] }
tokio = { version = "1.17", features = ["full"] }
-tokio-rustls = "0.23.0"
-tokio-tungstenite = { version = "0.16.0", features = ["rustls-tls-webpki-roots"] }
+tokio-rustls = "0.23.3"
+tokio-tungstenite = { version = "0.16.1", features = ["rustls-tls-webpki-roots"] }
diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml
index 206e364d5..9b7e636aa 100644
--- a/ext/webstorage/Cargo.toml
+++ b/ext/webstorage/Cargo.toml
@@ -17,4 +17,4 @@ path = "lib.rs"
deno_core = { version = "0.132.0", path = "../../core" }
deno_web = { version = "0.81.0", path = "../web" }
rusqlite = { version = "0.27.0", features = ["unlock_notify", "bundled"] }
-serde = { version = "1.0.129", features = ["derive"] }
+serde = { version = "1.0.136", features = ["derive"] }