Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

fix(deps): update rust crate serde to v1.0.209 #812

fix(deps): update rust crate serde to v1.0.209

fix(deps): update rust crate serde to v1.0.209 #812

GitHub Actions / clippy succeeded Aug 24, 2024 in 1s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.80.1 (3f5fd8dd4 2024-08-06)
  • cargo 1.80.1 (376290515 2024-07-16)
  • clippy 0.1.80 (3f5fd8d 2024-08-06)

Annotations

Check warning on line 174 in src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of deprecated function `base64::decode`: Use Engine::decode

warning: use of deprecated function `base64::decode`: Use Engine::decode
   --> src/main.rs:174:31
    |
174 |         let payload = base64::decode(auth_header.replace("Basic ", "")).map_err(|e| {
    |                               ^^^^^^

Check warning on line 150 in src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of deprecated function `base64::encode`: Use Engine::encode

warning: use of deprecated function `base64::encode`: Use Engine::encode
   --> src/main.rs:150:29
    |
150 |                     base64::encode(&format!("{}:{}", username, password)),
    |                             ^^^^^^
    |
    = note: `#[warn(deprecated)]` on by default