diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-12-20 04:54:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 04:54:27 -0800 |
commit | 400cd331fbc7775d2d977a7ba0ef878f8f54cce7 (patch) | |
tree | 7d9530f997c14ac755f7dea6c5a51fe3d55dc211 | |
parent | 8e947bb674725195a4d2a754445ee71029108f61 (diff) |
chore: bump deno_fetch and deno_http versions (#17124)
https://github.com/denoland/deno/pull/17081
https://github.com/denoland/deno/pull/17126
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/http/Cargo.toml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 665a0901e..a46dd6358 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1010,7 +1010,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.105.0" +version = "0.106.0" dependencies = [ "bytes", "data-url", @@ -1079,7 +1079,7 @@ dependencies = [ [[package]] name = "deno_http" -version = "0.76.0" +version = "0.77.0" dependencies = [ "async-compression", "base64", diff --git a/Cargo.toml b/Cargo.toml index 6bc78dde9..11225e0e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,10 +56,10 @@ deno_broadcast_channel = { version = "0.76.0", path = "./ext/broadcast_channel" deno_cache = { version = "0.14.0", path = "./ext/cache" } deno_console = { version = "0.82.0", path = "./ext/console" } deno_crypto = { version = "0.96.0", path = "./ext/crypto" } -deno_fetch = { version = "0.105.0", path = "./ext/fetch" } +deno_fetch = { version = "0.106.0", path = "./ext/fetch" } deno_ffi = { version = "0.69.0", path = "./ext/ffi" } deno_flash = { version = "0.18.0", path = "./ext/flash" } -deno_http = { version = "0.76.0", path = "./ext/http" } +deno_http = { version = "0.77.0", path = "./ext/http" } deno_net = { version = "0.74.0", path = "./ext/net" } deno_node = { version = "0.19.0", path = "./ext/node" } deno_tls = { version = "0.69.0", path = "./ext/tls" } diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index f9ef38078..f7503c1b5 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.105.0" +version = "0.106.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index 65cd4ccfe..dfb4e5fd6 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_http" -version = "0.76.0" +version = "0.77.0" authors.workspace = true edition.workspace = true license.workspace = true |