Skip to content

Commit

Permalink
fix(deps): update rust dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Feb 23, 2024
1 parent 06d3158 commit 304e220
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions distributor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", 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.2.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.1.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"] }
Expand Down
4 changes: 2 additions & 2 deletions fastly_compute/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions http_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", 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.2.0", features = ["http1", "http2", "server", "stream", "tcp"] }
lazy_static = "1.4.0"
lru = "0.8.1"
rand = "0.8.5"
Expand Down
8 changes: 4 additions & 4 deletions sxg_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ anyhow = "1.0.66"
async-trait = "0.1.59"
base64 = "0.13.1"
chrono = { version = "0.4.23", features = ["serde"] }
der-parser = { version = "8.1.0", features = ["bigint", "serialize"] }
der-parser = { version = "9.0.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"
Expand Down
10 changes: 5 additions & 5 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", 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 = "9.0.0", features = ["bigint", "serialize"] }
http = "1.0.0"
hyper = { version = "1.2.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"
Expand Down

0 comments on commit 304e220

Please sign in to comment.