Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Nugine committed Feb 29, 2024
1 parent 960d380 commit fb40a2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions codegen/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ pub fn codegen(model: &smithy::Model) {

glines![
"//! Auto generated by `codegen/src/error.rs`"
"#![allow(clippy::doc_markdown)]"
""
"use bytestring::ByteString;"
"use hyper::StatusCode;"
Expand Down
2 changes: 1 addition & 1 deletion crates/s3s-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies]
aws-config = { version = "1.1.2", default-features = false }
aws-config = { version = "1.1.2", default-features = false, features = ["behavior-version-latest"] }
aws-credential-types = "1.1.2"
aws-sdk-s3 = "1.12.0"
clap = { version = "4.3.21", features = ["derive"] }
Expand Down
1 change: 1 addition & 0 deletions crates/s3s/src/error/generated.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! Auto generated by `codegen/src/error.rs`
#![allow(clippy::doc_markdown)]

use bytestring::ByteString;
use hyper::StatusCode;
Expand Down
2 changes: 1 addition & 1 deletion crates/s3s/src/http/aws_chunked_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct SignatureCtx {
/// region
region: Box<str>,

/// secret_key
/// secret key
secret_key: SecretKey,

/// previous chunk's signature
Expand Down

0 comments on commit fb40a2a

Please sign in to comment.