Skip to content

Commit

Permalink
Update Rust dependencies (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored Dec 8, 2022
1 parent 8e4680d commit 2878ad1
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 29 deletions.
87 changes: 72 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions distributor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ clap = { version = "3.2.23", features = ["derive"] }
form_urlencoded = "1.1.0"
futures = "0.3.25"
http = "0.2.8"
hyper-rustls = "0.23.1"
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"] }
lazy_static = "1.4.0"
Expand All @@ -43,6 +43,6 @@ sha2 = "0.10.6"
sxg_rs = { path = "../sxg_rs", features = ["strip_id_headers", "rust_signer", "srcset"] }
thiserror = "1.0.37"
tls-listener = { version = "0.5.1", features = ["hyper-h1", "hyper-h2", "rustls"] }
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio = { version = "1.23.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio-rustls = "0.23.4"
url = "2.3.1"
6 changes: 3 additions & 3 deletions fastly_compute/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ debug = false

[dependencies]
anyhow = "1.0.66"
async-trait = "0.1.58"
async-trait = "0.1.59"
base64 = "0.13.1"
fastly = "^0.8.9"
http = "0.2.8"
log = "0.4.17"
log-fastly = "0.8.9"
pem = "1.1.0"
serde = { version = "1.0.147", features = ["derive"] }
serde = { version = "1.0.149", features = ["derive"] }
serde_yaml = "0.9.14"
sxg_rs = { path = "../sxg_rs", features = ["rust_signer"] }
tokio = { version = "1.22.0", features = ["rt"] }
tokio = { version = "1.23.0", features = ["rt"] }
url = "2.3.1"

[features]
Expand Down
6 changes: 3 additions & 3 deletions http_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ edition = "2018"

[dependencies]
anyhow = "1.0.66"
async-trait = "0.1.58"
async-trait = "0.1.59"
clap = { version = "3.2.23", features = ["derive"] }
fs2 = "0.4.3"
futures = "0.3.25"
http = "0.2.8"
hyper-reverse-proxy = { git = "https://github.com/felipenoris/hyper-reverse-proxy", rev = "96a398de8522fac07a5e15bd0699f6cd7fa84bce" }
hyper-rustls = "0.23.1"
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"] }
Expand All @@ -38,7 +38,7 @@ rand = "0.8.5"
serde_yaml = "0.9.14"
# TODO: Determine if I can remove strip_id_headers because it's default.
sxg_rs = { path = "../sxg_rs", features = ["strip_id_headers", "rust_signer"] }
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio = { version = "1.23.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tools = { path = "../tools" }
url = "2.3.1"

Expand Down
6 changes: 3 additions & 3 deletions sxg_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
anyhow = "1.0.66"
async-trait = "0.1.58"
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"] }
Expand All @@ -45,13 +45,13 @@ nom = { version = "7.1.1", features = ["alloc"] }
once_cell = "1.16.0"
pem = "1.1.0"
p256 = { version = "0.11.1", features = ["ecdsa"], optional = true }
serde = { version = "1.0.147", features = ["derive"] }
serde = { version = "1.0.149", features = ["derive"] }
serde-wasm-bindgen = "0.4.5"
serde_json = "1.0.89"
serde_yaml = "0.9.14"
sha1 = "0.10.5"
sha2 = "0.10.6"
tokio = { version = "1.22.0", features = ["macros", "parking_lot", "sync", "time"] }
tokio = { version = "1.23.0", features = ["macros", "parking_lot", "sync", "time"] }
url = "2.3.1"
wasm-bindgen = "0.2.83"
wasm-bindgen-futures = "0.4.33"
Expand Down
6 changes: 3 additions & 3 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.66"
async-trait = "0.1.58"
async-trait = "0.1.59"
base64 = "0.13.1"
clap = { version = "3.2.23", features = ["derive"] }
ctrlc = "3.2.3"
Expand All @@ -31,12 +31,12 @@ hyper = { version = "0.14.23", features = ["client", "http2"]}
hyper-tls = "0.5.0"
pem = "1.1.0"
regex = "1.7.0"
serde = { version = "1.0.147", features = ["derive"] }
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
serde_yaml = "0.9.14"
sxg_rs = { path = "../sxg_rs", features = ["rust_signer"] }
toml = "0.5.9"
tokio = { version = "1.22.0", features = ["full"] }
tokio = { version = "1.23.0", features = ["full"] }
url = "2.3.1"
warp = "0.3.3"
wrangler = "1.19.13"
Expand Down

0 comments on commit 2878ad1

Please sign in to comment.