Skip to content

Commit 2b04962

Browse files
committed
Fix clippy warnings
1 parent 9835971 commit 2b04962

File tree

9 files changed

+13
-17
lines changed

9 files changed

+13
-17
lines changed

.github/workflows/ci.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,7 @@ jobs:
7878
clippy_check:
7979
runs-on: ubuntu-latest
8080
steps:
81-
- uses: actions/checkout@v1
82-
- uses: actions-rs/toolchain@v1
83-
with:
84-
toolchain: nightly
85-
components: clippy
86-
override: true
81+
- uses: actions/checkout@v3
8782
- uses: actions-rs/clippy-check@v1
8883
with:
8984
token: ${{ secrets.GITHUB_TOKEN }}

benches/transport_smtp.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn bench_simple_send(c: &mut Criterion) {
2424
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
2525
)
2626
.unwrap(),
27-
"id".to_string(),
27+
"id",
2828
"From: user@localhost\r\n\
2929
Content-Type: text/plain\r\n\
3030
\r\n\
@@ -55,7 +55,7 @@ fn bench_reuse_send(c: &mut Criterion) {
5555
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
5656
)
5757
.unwrap(),
58-
"id".to_string(),
58+
"id",
5959
"From: user@localhost\r\n\
6060
Content-Type: text/plain\r\n\
6161
\r\n\

examples/smtp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() {
99
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
1010
)
1111
.unwrap(),
12-
"id".to_string(),
12+
"id",
1313
"Hello ß☺ example".to_string().into_bytes(),
1414
);
1515

examples/smtp_gmail.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() {
99
vec![EmailAddress::new("[email protected]".to_string()).unwrap()],
1010
)
1111
.unwrap(),
12-
"id".to_string(),
12+
"id",
1313
"Hello example".to_string().into_bytes(),
1414
);
1515

src/smtp/client/codec.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ impl ClientCodec {
2525
impl ClientCodec {
2626
/// Adds transparency
2727
/// TODO: replace CR and LF by CRLF
28+
#[allow(clippy::bool_to_int_with_if)]
2829
pub async fn encode<W: Write + Unpin>(&mut self, frame: &[u8], mut buf: W) -> io::Result<()> {
2930
match frame.len() {
3031
0 => {

src/smtp/commands.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ impl AuthCommand {
312312
.ok_or(Error::ResponseParsing("Could not read auth challenge"))?;
313313
debug!("auth encoded challenge: {}", encoded_challenge);
314314

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

318318
let response = Some(mechanism.response(&credentials, Some(decoded_challenge.as_ref()))?);
@@ -383,7 +383,7 @@ mod test {
383383
"RCPT TO:<[email protected]>\r\n"
384384
);
385385
assert_eq!(
386-
format!("{}", RcptCommand::new(email.clone(), vec![rcpt_parameter])),
386+
format!("{}", RcptCommand::new(email, vec![rcpt_parameter])),
387387
"RCPT TO:<[email protected]> TEST=value\r\n"
388388
);
389389
assert_eq!(format!("{}", QuitCommand), "QUIT\r\n");
@@ -414,7 +414,7 @@ mod test {
414414
assert_eq!(
415415
format!(
416416
"{}",
417-
AuthCommand::new(Mechanism::Login, credentials.clone(), None).unwrap()
417+
AuthCommand::new(Mechanism::Login, credentials, None).unwrap()
418418
),
419419
"AUTH LOGIN\r\n"
420420
);

tests/transport_file.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod test {
1818
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
1919
)
2020
.unwrap(),
21-
"id".to_string(),
21+
"id",
2222
"Hello ß☺ example".to_string().into_bytes(),
2323
);
2424
let message_id = email.message_id().to_string();

tests/transport_sendmail.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mod test {
1414
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
1515
)
1616
.unwrap(),
17-
"id".to_string(),
17+
"id",
1818
"Hello ß☺ example".to_string().into_bytes(),
1919
);
2020

tests/transport_stub.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod test {
1313
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
1414
)
1515
.unwrap(),
16-
"id".to_string(),
16+
"id",
1717
"Hello ß☺ example".to_string().into_bytes(),
1818
);
1919
let email_ko = SendableEmail::new(
@@ -22,7 +22,7 @@ mod test {
2222
vec![EmailAddress::new("root@localhost".to_string()).unwrap()],
2323
)
2424
.unwrap(),
25-
"id".to_string(),
25+
"id",
2626
"Hello ß☺ example".to_string().into_bytes(),
2727
);
2828

0 commit comments

Comments
 (0)