Update cookie/hyper_serde.

This commit is contained in:
Josh Matthews 2022-04-01 02:11:47 -04:00
parent 369a5c0370
commit 0625ab92b8
8 changed files with 19 additions and 29 deletions

27
Cargo.lock generated
View file

@ -967,15 +967,6 @@ dependencies = [
"url", "url",
] ]
[[package]]
name = "cookie"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9fac5e7bdefb6160fb181ee0eaa6f96704b625c70e6d61c465cb35750a4ea12"
dependencies = [
"time",
]
[[package]] [[package]]
name = "cookie" name = "cookie"
version = "0.12.0" version = "0.12.0"
@ -2898,11 +2889,11 @@ dependencies = [
[[package]] [[package]]
name = "hyper_serde" name = "hyper_serde"
version = "0.12.0" version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "843b2c3c0cee11aa3042250e849a333124a6a873f8f66e5fdaab7980df1ac8ee" checksum = "4193ebe2b9ecb7d04dd1a777c25f3294e10310fe5583e1006a3f47779d6c6a01"
dependencies = [ dependencies = [
"cookie 0.11.2", "cookie",
"headers", "headers",
"http", "http",
"hyper 0.14.5", "hyper 0.14.5",
@ -4064,7 +4055,7 @@ dependencies = [
"brotli", "brotli",
"bytes 1.1.0", "bytes 1.1.0",
"content-security-policy", "content-security-policy",
"cookie 0.11.2", "cookie",
"crossbeam-channel 0.4.4", "crossbeam-channel 0.4.4",
"data-url", "data-url",
"devtools_traits", "devtools_traits",
@ -4129,7 +4120,7 @@ name = "net_traits"
version = "0.0.1" version = "0.0.1"
dependencies = [ dependencies = [
"content-security-policy", "content-security-policy",
"cookie 0.11.2", "cookie",
"embedder_traits", "embedder_traits",
"headers", "headers",
"http", "http",
@ -5300,7 +5291,7 @@ dependencies = [
"canvas_traits", "canvas_traits",
"chrono", "chrono",
"content-security-policy", "content-security-policy",
"cookie 0.11.2", "cookie",
"crossbeam-channel 0.4.4", "crossbeam-channel 0.4.4",
"cssparser", "cssparser",
"data-url", "data-url",
@ -5443,7 +5434,7 @@ dependencies = [
"bitflags", "bitflags",
"bluetooth_traits", "bluetooth_traits",
"canvas_traits", "canvas_traits",
"cookie 0.11.2", "cookie",
"crossbeam-channel 0.4.4", "crossbeam-channel 0.4.4",
"devtools_traits", "devtools_traits",
"embedder_traits", "embedder_traits",
@ -7194,7 +7185,7 @@ checksum = "3484940751923901dc09b362740cad90bcfb62ec93d8abf38add2c3ac728c596"
dependencies = [ dependencies = [
"base64 0.12.0", "base64 0.12.0",
"bytes 0.5.6", "bytes 0.5.6",
"cookie 0.12.0", "cookie",
"http", "http",
"log", "log",
"once_cell", "once_cell",
@ -7215,7 +7206,7 @@ version = "0.0.1"
dependencies = [ dependencies = [
"base64 0.10.1", "base64 0.10.1",
"compositing", "compositing",
"cookie 0.11.2", "cookie",
"crossbeam-channel 0.4.4", "crossbeam-channel 0.4.4",
"euclid", "euclid",
"headers", "headers",

View file

@ -35,7 +35,7 @@ cssparser = "0.29"
euclid = "0.20" euclid = "0.20"
hashglobe = { path = "../hashglobe" } hashglobe = { path = "../hashglobe" }
http = { version = "0.2", optional = true } http = { version = "0.2", optional = true }
hyper_serde = { version = "0.12", optional = true } hyper_serde = { version = "0.13", optional = true }
keyboard-types = { version = "0.6", optional = true } keyboard-types = { version = "0.6", optional = true }
selectors = { path = "../selectors" } selectors = { path = "../selectors" }
serde = { version = "1.0.27", optional = true } serde = { version = "1.0.27", optional = true }

View file

@ -21,7 +21,7 @@ base64 = "0.10.1"
brotli = "3" brotli = "3"
bytes = "1" bytes = "1"
content-security-policy = { version = "0.4.0", features = ["serde"] } content-security-policy = { version = "0.4.0", features = ["serde"] }
cookie_rs = { package = "cookie", version = "0.11" } cookie_rs = { package = "cookie", version = "0.12" }
crossbeam-channel = "0.4" crossbeam-channel = "0.4"
data-url = "0.1.0" data-url = "0.1.0"
devtools_traits = { path = "../devtools_traits" } devtools_traits = { path = "../devtools_traits" }
@ -33,7 +33,7 @@ headers = "0.3"
http = "0.2" http = "0.2"
hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp", "stream"] } hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp", "stream"] }
hyper-openssl = "0.9.1" hyper-openssl = "0.9.1"
hyper_serde = "0.12" hyper_serde = "0.13"
immeta = "0.4" immeta = "0.4"
ipc-channel = "0.14" ipc-channel = "0.14"
lazy_static = "1" lazy_static = "1"

View file

@ -14,12 +14,12 @@ doctest = false
[dependencies] [dependencies]
content-security-policy = { version = "0.4.0", features = ["serde"] } content-security-policy = { version = "0.4.0", features = ["serde"] }
cookie = "0.11" cookie = "0.12"
embedder_traits = { path = "../embedder_traits" } embedder_traits = { path = "../embedder_traits" }
headers = "0.3" headers = "0.3"
http = "0.2" http = "0.2"
hyper = "0.14" hyper = "0.14"
hyper_serde = "0.12" hyper_serde = "0.13"
ipc-channel = "0.14" ipc-channel = "0.14"
lazy_static = "1" lazy_static = "1"
log = "0.4" log = "0.4"

View file

@ -40,7 +40,7 @@ bluetooth_traits = { path = "../bluetooth_traits" }
canvas_traits = { path = "../canvas_traits" } canvas_traits = { path = "../canvas_traits" }
chrono = "0.4" chrono = "0.4"
content-security-policy = { version = "0.4.0", features = ["serde"] } content-security-policy = { version = "0.4.0", features = ["serde"] }
cookie = "0.11" cookie = "0.12"
crossbeam-channel = "0.4" crossbeam-channel = "0.4"
cssparser = "0.29" cssparser = "0.29"
data-url = "0.1.0" data-url = "0.1.0"
@ -57,7 +57,7 @@ fxhash = "0.2"
headers = "0.3" headers = "0.3"
html5ever = "0.26" html5ever = "0.26"
http = "0.2" http = "0.2"
hyper_serde = "0.12" hyper_serde = "0.13"
image = "0.24" image = "0.24"
indexmap = { version = "1.0.2", features = ["std"] } indexmap = { version = "1.0.2", features = ["std"] }
ipc-channel = "0.14" ipc-channel = "0.14"

View file

@ -14,7 +14,7 @@ path = "lib.rs"
bitflags = "1.0" bitflags = "1.0"
bluetooth_traits = { path = "../bluetooth_traits" } bluetooth_traits = { path = "../bluetooth_traits" }
canvas_traits = { path = "../canvas_traits" } canvas_traits = { path = "../canvas_traits" }
cookie = "0.11" cookie = "0.12"
crossbeam-channel = "0.4" crossbeam-channel = "0.4"
devtools_traits = { path = "../devtools_traits" } devtools_traits = { path = "../devtools_traits" }
embedder_traits = { path = "../embedder_traits" } embedder_traits = { path = "../embedder_traits" }
@ -22,7 +22,7 @@ euclid = "0.20"
gfx_traits = { path = "../gfx_traits" } gfx_traits = { path = "../gfx_traits" }
headers = "0.3" headers = "0.3"
http = "0.2" http = "0.2"
hyper_serde = "0.12" hyper_serde = "0.13"
ipc-channel = "0.14" ipc-channel = "0.14"
keyboard-types = "0.6" keyboard-types = "0.6"
libc = "0.2" libc = "0.2"

View file

@ -13,7 +13,7 @@ path = "lib.rs"
[dependencies] [dependencies]
base64 = "0.10" base64 = "0.10"
compositing = { path = "../compositing" } compositing = { path = "../compositing" }
cookie = "0.11" cookie = "0.12"
crossbeam-channel = "0.4" crossbeam-channel = "0.4"
euclid = "0.20" euclid = "0.20"
headers = "0.3" headers = "0.3"

View file

@ -34,7 +34,6 @@ packages = [
"cfg-if", "cfg-if",
"cloudabi", "cloudabi",
"cocoa", "cocoa",
"cookie",
"crossbeam-channel", "crossbeam-channel",
"crossbeam-utils", "crossbeam-utils",
"deflate", "deflate",