diff --git a/distributor/Cargo.toml b/distributor/Cargo.toml index d5b73801..d3da23a1 100644 --- a/distributor/Cargo.toml +++ b/distributor/Cargo.toml @@ -25,19 +25,19 @@ anyhow = { version = "1.0.66", features = ["backtrace"] } base64 = "0.13.1" byte-strings = { version = "0.2.2", features = ["const-friendly"] } ciborium = "0.2.0" -clap = { version = "3.2.23", features = ["derive"] } +clap = { version = "4.5.0", features = ["derive"] } form_urlencoded = "1.1.0" futures = "0.3.25" -http = "0.2.8" +http = "1.0.0" hyper-rustls = "0.23.2" hyper-trust-dns = { version = "0.5.0", default-features = false, features = ["rustls-webpki", "rustls-http1", "rustls-tls-12"] } -hyper = { version = "0.14.23", features = ["http1", "http2", "server", "stream", "tcp"] } +hyper = { version = "1.1.0", features = ["http1", "http2", "server", "stream", "tcp"] } lazy_static = "1.4.0" nom = { version = "7.1.1" } percent-encoding = "2.2.0" regex = "1.7.0" rustls = "0.20.7" -rustls-pemfile = "1.0.1" +rustls-pemfile = "2.0.0" sha2 = "0.10.6" # TODO: Determine if I can remove strip_id_headers because it's default. sxg_rs = { path = "../sxg_rs", features = ["strip_id_headers", "rust_signer", "srcset"] } diff --git a/fastly_compute/Cargo.toml b/fastly_compute/Cargo.toml index 2c9ca34b..11776de6 100644 --- a/fastly_compute/Cargo.toml +++ b/fastly_compute/Cargo.toml @@ -27,10 +27,10 @@ anyhow = "1.0.66" async-trait = "0.1.59" base64 = "0.13.1" fastly = "^0.8.9" -http = "0.2.8" +http = "1.0.0" log = "0.4.17" log-fastly = "0.8.9" -pem = "1.1.0" +pem = "3.0.3" serde = { version = "1.0.149", features = ["derive"] } serde_yaml = "0.9.14" sxg_rs = { path = "../sxg_rs", features = ["rust_signer"] } diff --git a/http_server/Cargo.toml b/http_server/Cargo.toml index aa1eba97..6a18ef43 100644 --- a/http_server/Cargo.toml +++ b/http_server/Cargo.toml @@ -23,15 +23,15 @@ edition = "2018" [dependencies] anyhow = "1.0.66" async-trait = "0.1.59" -clap = { version = "3.2.23", features = ["derive"] } +clap = { version = "4.5.0", features = ["derive"] } fs2 = "0.4.3" futures = "0.3.25" -http = "0.2.8" +http = "1.0.0" hyper-reverse-proxy = { git = "https://github.com/felipenoris/hyper-reverse-proxy", rev = "96a398de8522fac07a5e15bd0699f6cd7fa84bce" } hyper-rustls = "0.23.2" hyper-tls = "0.5.0" hyper-trust-dns = { version = "0.5.0", default-features = false, features = ["rustls-webpki", "rustls-http1", "rustls-tls-12"] } -hyper = { version = "0.14.23", features = ["http1", "http2", "server", "stream", "tcp"] } +hyper = { version = "1.1.0", features = ["http1", "http2", "server", "stream", "tcp"] } lazy_static = "1.4.0" lru = "0.8.1" rand = "0.8.5" diff --git a/sxg_rs/Cargo.toml b/sxg_rs/Cargo.toml index 9c529c1f..d8e8b7e8 100644 --- a/sxg_rs/Cargo.toml +++ b/sxg_rs/Cargo.toml @@ -38,12 +38,12 @@ chrono = { version = "0.4.23", features = ["serde"] } der-parser = { version = "8.1.0", features = ["bigint", "serialize"] } futures = { version = "0.3.25" } getrandom = { version = "0.2.8", features = ["js"] } -http = "0.2.8" +http = "1.0.0" js-sys = "0.3.60" -lol_html = "0.3.1" +lol_html = "1.2.0" nom = { version = "7.1.1", features = ["alloc"] } once_cell = "1.16.0" -pem = "1.1.0" +pem = "3.0.3" p256 = { version = "0.11.1", features = ["ecdsa"], optional = true } serde = { version = "1.0.149", features = ["derive"] } serde-wasm-bindgen = "0.4.5" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index b8339286..6e178483 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -23,13 +23,13 @@ edition = "2018" anyhow = "1.0.66" async-trait = "0.1.59" base64 = "0.13.1" -clap = { version = "3.2.23", features = ["derive"] } +clap = { version = "4.5.0", features = ["derive"] } ctrlc = "3.2.3" -der-parser = { version = "7.0.0", features = ["bigint", "serialize"] } -http = "0.2.8" -hyper = { version = "0.14.23", features = ["client", "http2"]} +der-parser = { version = "8.2.0", features = ["bigint", "serialize"] } +http = "1.0.0" +hyper = { version = "1.1.0", features = ["client", "http2"]} hyper-tls = "0.5.0" -pem = "1.1.0" +pem = "3.0.3" regex = "1.7.0" serde = { version = "1.0.149", features = ["derive"] } serde_json = "1.0.89"