diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index 4be2815b37f5ef8f5e4042f057773f179c884998..64cfb40a1eb90987eeab99530c4aa007b5e52ff0 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -67,3 +67,9 @@ message = "Upgrade Smithy to v1.26" references = ["smithy-rs#1929"] meta = { "breaking" = false, "tada" = true, "bug" = false, "target" = "all"} author = "Velfi" + +[[smithy-rs]] +message = "Fix cargo audit issue on chrono." +references = ["smithy-rs#1907"] +meta = { "breaking" = false, "tada" = false, "bug" = false, "target" = "all" } +author = "ysaito1001" diff --git a/rust-runtime/aws-smithy-http-server-python/Cargo.toml b/rust-runtime/aws-smithy-http-server-python/Cargo.toml index 52e1e537af7852b9550820a2f57c75a96c2ac6c2..1a4e4098b0e705b1188dc1456e25500a59307cbe 100644 --- a/rust-runtime/aws-smithy-http-server-python/Cargo.toml +++ b/rust-runtime/aws-smithy-http-server-python/Cargo.toml @@ -22,7 +22,7 @@ bytes = "1.2" futures = "0.3" http = "0.2" hyper = { version = "0.14.20", features = ["server", "http1", "http2", "tcp", "stream"] } -lambda_http = "0.6.0" +lambda_http = "0.7.1" num_cpus = "1.13.1" parking_lot = "0.12.1" pin-project-lite = "0.2" diff --git a/rust-runtime/aws-smithy-http-server/Cargo.toml b/rust-runtime/aws-smithy-http-server/Cargo.toml index 055b7aab8cbbebe28a6ab65a1fa6ff1f7024965a..10888a09e548755aeec020f10798b2c8f78a2b77 100644 --- a/rust-runtime/aws-smithy-http-server/Cargo.toml +++ b/rust-runtime/aws-smithy-http-server/Cargo.toml @@ -26,7 +26,7 @@ futures-util = { version = "0.3", default-features = false } http = "0.2" http-body = "0.4" hyper = { version = "0.14.12", features = ["server", "http1", "http2", "tcp", "stream"] } -lambda_http = "0.6.0" +lambda_http = "0.7.1" mime = "0.3" nom = "7" pin-project-lite = "0.2" diff --git a/rust-runtime/aws-smithy-http-server/examples/pokemon-service/Cargo.toml b/rust-runtime/aws-smithy-http-server/examples/pokemon-service/Cargo.toml index f1b842f7e33ad825e0b0fe557d8b96f82fb37b30..e6a078f897d039e6a797fc1eb956a54067dd0510 100644 --- a/rust-runtime/aws-smithy-http-server/examples/pokemon-service/Cargo.toml +++ b/rust-runtime/aws-smithy-http-server/examples/pokemon-service/Cargo.toml @@ -37,7 +37,7 @@ rustls-pemfile = "1.0.1" futures-util = "0.3" # This dependency is only required for the `pokemon-service-lambda` program. -lambda_http = "0.6.0" +lambda_http = "0.7.1" # Local paths aws-smithy-http-server = { path = "../../" } diff --git a/rust-runtime/aws-smithy-types-convert/Cargo.toml b/rust-runtime/aws-smithy-types-convert/Cargo.toml index 552c3e106acaae321ac1dd6ed44af24228b9ee61..c9ffbd22a01b1b6e9719cbed4611a73a38f6f939 100644 --- a/rust-runtime/aws-smithy-types-convert/Cargo.toml +++ b/rust-runtime/aws-smithy-types-convert/Cargo.toml @@ -13,7 +13,7 @@ convert-time = ["aws-smithy-types", "time"] [dependencies] aws-smithy-types = { path = "../aws-smithy-types", optional = true } -chrono = { version = "0.4.19", optional = true } +chrono = { version = "0.4.19", optional = true, default-features = false, features = ["std"] } time = { version = "0.3.4", optional = true } [package.metadata.docs.rs]