Skip to content

Commit

Permalink
Fix fmt and clippy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
masongup-mdsol committed Jun 7, 2024
1 parent 65fc0d0 commit 406f771
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
Expand Down
6 changes: 3 additions & 3 deletions src/sign_outgoing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ impl MAuthInfo {
///
/// Note that, as the request signature includes a timestamp, the request must be sent out
/// shortly after the signature takes place.
///
///
/// Note that it will need to read the entire body in order to sign it, so it will not
/// work properly if any of the streaming body types are used.
pub fn sign_request(&self, req: &mut Request) -> Result<(), SigningError> {
Expand All @@ -29,7 +29,7 @@ impl MAuthInfo {
///
/// Note that, as the request signature includes a timestamp, the request must be sent out
/// shortly after the signature takes place.
///
///
/// Also note that it will need to read the entire body in order to sign it, so it will not
/// work properly if any of the streaming body types are used.
pub fn sign_request_v2(&self, req: &mut Request) -> Result<(), SigningError> {
Expand Down Expand Up @@ -66,7 +66,7 @@ impl MAuthInfo {
///
/// Note that, as the request signature includes a timestamp, the request must be sent out
/// shortly after the signature takes place.
///
///
/// Also note that it will need to read the entire body in order to sign it, so it will not
/// work properly if any of the streaming body types are used.
pub fn sign_request_v1(&self, req: &mut Request) -> Result<(), SigningError> {
Expand Down

0 comments on commit 406f771

Please sign in to comment.