Skip to content

Commit 3caedef

Browse files
committed
bump lru dependency for aws-sdk-s3 to 0.16.3
1 parent f7ec13c commit 3caedef

5 files changed

Lines changed: 24 additions & 18 deletions

File tree

.changelog/bump-lru.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
applies_to:
3+
- aws-sdk-rust
4+
- client
5+
authors:
6+
- svix-jbrown
7+
references: []
8+
breaking: false
9+
new_feature: false
10+
bug_fix: true
11+
---
12+
Update the `lru` dependency for `aws-sdk-s3` and `rust-runtime`

aws/rust-runtime/Cargo.lock

Lines changed: 9 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/rust-runtime/aws-inlineable/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ http-body = "0.4.5"
3535
http-1x = { package = "http", version = "1.1.0", optional = true }
3636
http-body-1x = { package = "http-body", version = "1", optional = true }
3737
hmac = "0.12"
38-
lru = "0.12.5"
38+
lru = "0.16.3"
3939
ring = "0.17.5"
4040
sha2 = "0.10"
4141
tokio = "1.40.0"

codegen-core/src/main/kotlin/software/amazon/smithy/rust/codegen/core/rustlang/CargoDependency.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ data class CargoDependency(
286286
val Hex: CargoDependency = CargoDependency("hex", CratesIo("0.4.3"))
287287
val Hmac: CargoDependency = CargoDependency("hmac", CratesIo("0.12"))
288288
val LazyStatic: CargoDependency = CargoDependency("lazy_static", CratesIo("1.4.0"))
289-
val Lru: CargoDependency = CargoDependency("lru", CratesIo("0.12.2"))
289+
val Lru: CargoDependency = CargoDependency("lru", CratesIo("0.16.3"))
290290
val Md5: CargoDependency = CargoDependency("md-5", CratesIo("0.10.0"), rustName = "md5")
291291
val PercentEncoding: CargoDependency =
292292
CargoDependency("percent-encoding", CratesIo("2.0.0"))

rust-runtime/aws-smithy-types/src/blob.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ mod test {
148148
mod test_serde {
149149
use crate::Blob;
150150
use serde::{Deserialize, Serialize};
151-
use std::collections::HashMap;
152151

153152
#[derive(Deserialize, Serialize, Debug, PartialEq)]
154153
struct ForTest {
@@ -169,6 +168,7 @@ mod test_serde {
169168

170169
#[test]
171170
fn not_human_readable_blob() {
171+
use std::collections::HashMap;
172172
use std::ffi::CString;
173173

174174
let for_test = ForTest {

0 commit comments

Comments
 (0)