diff options
Diffstat (limited to 'ext/fetch')
-rw-r--r-- | ext/fetch/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index b1606ae9e..eedac9954 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -14,7 +14,7 @@ description = "Fetch API implementation for Deno" path = "lib.rs" [dependencies] -bytes = "1.0.1" +bytes = "1.1.0" data-url = "0.1.0" deno_core = { version = "0.98.0", path = "../../core" } deno_tls = { version = "0.3.0", path = "../tls" } @@ -22,7 +22,7 @@ deno_web = { version = "0.47.0", path = "../web" } http = "0.2.4" lazy_static = "1.4.0" reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } -serde = { version = "1.0.126", features = ["derive"] } -tokio = { version = "1.8.1", features = ["full"] } +serde = { version = "1.0.129", features = ["derive"] } +tokio = { version = "1.10.1", features = ["full"] } tokio-stream = "0.1.7" tokio-util = "0.6.7" |