Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update rust dependencies #2019

Merged
merged 5 commits into from
Mar 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
274 changes: 151 additions & 123 deletions sources/Cargo.lock

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions sources/api/apiclient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ futures = { version = "0.3", default-features = false }
futures-channel = { version = "0.3", default-features = false }
http = "0.2"
httparse = "1.5"
# Ensure we use exactly hyper 0.14.2 which is the last version that does not emit a cdylib
# See this issue for tracking https://github.com/bottlerocket-os/bottlerocket/issues/1471
hyper = { version = "=0.14.2", default-features = false, features = [ "client", "http1", "http2" ] }
hyper = { version = "0.14.2", default-features = false, features = [ "client", "http1", "http2" ] }
hyper-unix-connector = "0.2"
libc = "0.2"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion sources/api/bootstrap-containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ journalctl -u bootstrap-containers@bear.service

## Colophon

This text was generated using [cargo-readme](https://crates.io/crates/cargo-readme), and includes the rustdoc from `src/main.rs`.
This text was generated using [cargo-readme](https://crates.io/crates/cargo-readme), and includes the rustdoc from `src/main.rs`.
2 changes: 1 addition & 1 deletion sources/api/certdog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde_json = "1"
simplelog = "0.11"
snafu = "0.7"
tokio = { version = "~1.14", default-features = false, features = ["macros", "rt-multi-thread"] } # LTS
x509-parser = "0.12"
x509-parser = "0.13"

[dev-dependencies]
tempfile = "3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion sources/cfsignal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tokio = { version = "~1.14", default-features = false, features = ["macros", "rt
rusoto_core = { version = "0.47.0", default-features = false, features = ["rustls"] }
rusoto_cloudformation = { version = "0.47.0", default-features = false, features = ["rustls"] }
imdsclient = { path = "../imdsclient", version = "0.1.0" }
hyper = "=0.14.2"
hyper = "0.14.2"

[build-dependencies]
cargo-readme = "3.1"
3 changes: 0 additions & 3 deletions sources/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ skip = [
# older version used by clap 2.33.3, via cargo-readme and structopt
{ name = "strsim", version = "0.8.0" },

# older version used by hyper 0.14.2
{ name = "socket2", version = "0.3.19" },

# older version used by webpki-roots 0.21.1
{ name = "pem", version = "0.8.3" },

Expand Down
2 changes: 1 addition & 1 deletion sources/models/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_plain = "1.0"
snafu = "0.7"
toml = "0.5"
x509-parser = "0.12"
x509-parser = "0.13"
url = "2.1"

[build-dependencies]
Expand Down
Loading