Skip to content

Commit aab45e9

Browse files
authored
Merge pull request #3103 from spinframework/update-spin-timer
Run cargo update on timer example
2 parents bde256d + 2ef489c commit aab45e9

File tree

3 files changed

+991
-797
lines changed

3 files changed

+991
-797
lines changed

crates/http/src/routes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ impl Router {
154154
pub fn contains_reserved_route(&self) -> bool {
155155
self.router
156156
.iter()
157-
.any(|(_spec, handker)| handker.based_route.starts_with(crate::WELL_KNOWN_PREFIX))
157+
.any(|(_spec, handler)| handler.based_route.starts_with(crate::WELL_KNOWN_PREFIX))
158158
}
159159

160160
/// This returns the component ID that should handle the given path, or an error

crates/key-value-aws/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ rust-version.workspace = true
1111
[dependencies]
1212
anyhow = { workspace = true }
1313
async-once-cell = "0.5.4"
14-
aws-config = "1.1.7"
14+
# Turn off default features to avoid pulling in "aws-smithy-runtime/default-https-client" which messes up tls provider selection
15+
aws-config = { version = "1.1.7", default-features = false, features = ["rt-tokio", "credentials-process", "sso"] }
1516
aws-credential-types = "1.1.7"
16-
aws-sdk-dynamodb = "1.49.0"
17+
# Turn off default features to avoid pulling in "aws-smithy-runtime/default-https-client" which messes up tls provider selection
18+
aws-sdk-dynamodb = { version = "1.49.0", default-features = false, features = ["rustls", "rt-tokio"] }
1719
serde = { workspace = true }
1820
spin-core = { path = "../core" }
1921
spin-factor-key-value = { path = "../factor-key-value" }

0 commit comments

Comments
 (0)