Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clippy warnings #55

Merged
merged 1 commit into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,7 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions/checkout@v3
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions benches/transport_smtp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn bench_simple_send(c: &mut Criterion) {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"From: user@localhost\r\n\
Content-Type: text/plain\r\n\
\r\n\
Expand Down Expand Up @@ -55,7 +55,7 @@ fn bench_reuse_send(c: &mut Criterion) {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"From: user@localhost\r\n\
Content-Type: text/plain\r\n\
\r\n\
Expand Down
2 changes: 1 addition & 1 deletion examples/smtp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn main() {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"Hello ß☺ example".to_string().into_bytes(),
);

Expand Down
2 changes: 1 addition & 1 deletion examples/smtp_gmail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn main() {
vec![EmailAddress::new("[email protected]".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"Hello example".to_string().into_bytes(),
);

Expand Down
1 change: 1 addition & 0 deletions src/smtp/client/codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ impl ClientCodec {
impl ClientCodec {
/// Adds transparency
/// TODO: replace CR and LF by CRLF
#[allow(clippy::bool_to_int_with_if)]
pub async fn encode<W: Write + Unpin>(&mut self, frame: &[u8], mut buf: W) -> io::Result<()> {
match frame.len() {
0 => {
Expand Down
6 changes: 3 additions & 3 deletions src/smtp/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ impl AuthCommand {
.ok_or(Error::ResponseParsing("Could not read auth challenge"))?;
debug!("auth encoded challenge: {}", encoded_challenge);

let decoded_challenge = String::from_utf8(base64::decode(&encoded_challenge)?)?;
let decoded_challenge = String::from_utf8(base64::decode(encoded_challenge)?)?;
debug!("auth decoded challenge: {}", decoded_challenge);

let response = Some(mechanism.response(&credentials, Some(decoded_challenge.as_ref()))?);
Expand Down Expand Up @@ -383,7 +383,7 @@ mod test {
"RCPT TO:<[email protected]>\r\n"
);
assert_eq!(
format!("{}", RcptCommand::new(email.clone(), vec![rcpt_parameter])),
format!("{}", RcptCommand::new(email, vec![rcpt_parameter])),
"RCPT TO:<[email protected]> TEST=value\r\n"
);
assert_eq!(format!("{}", QuitCommand), "QUIT\r\n");
Expand Down Expand Up @@ -414,7 +414,7 @@ mod test {
assert_eq!(
format!(
"{}",
AuthCommand::new(Mechanism::Login, credentials.clone(), None).unwrap()
AuthCommand::new(Mechanism::Login, credentials, None).unwrap()
),
"AUTH LOGIN\r\n"
);
Expand Down
2 changes: 1 addition & 1 deletion tests/transport_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mod test {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"Hello ß☺ example".to_string().into_bytes(),
);
let message_id = email.message_id().to_string();
Expand Down
2 changes: 1 addition & 1 deletion tests/transport_sendmail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mod test {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"Hello ß☺ example".to_string().into_bytes(),
);

Expand Down
4 changes: 2 additions & 2 deletions tests/transport_stub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mod test {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"Hello ß☺ example".to_string().into_bytes(),
);
let email_ko = SendableEmail::new(
Expand All @@ -22,7 +22,7 @@ mod test {
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
)
.unwrap(),
"id".to_string(),
"id",
"Hello ß☺ example".to_string().into_bytes(),
);

Expand Down