diff options
Diffstat (limited to 'crates/mozart-core/src/vcs')
| -rw-r--r-- | crates/mozart-core/src/vcs/driver/github.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/mozart-core/src/vcs/driver/github.rs b/crates/mozart-core/src/vcs/driver/github.rs index 7772bbb..4df2c1c 100644 --- a/crates/mozart-core/src/vcs/driver/github.rs +++ b/crates/mozart-core/src/vcs/driver/github.rs @@ -303,7 +303,7 @@ impl VcsDriver for GitHubDriver { /// Decode base64-encoded content from API responses. /// Also used by Forgejo driver as `base64_decode_content`. pub fn base64_decode_content(input: &str) -> Result<String> { - use base64::Engine; + use base64::Engine as _; let cleaned: Vec<u8> = input .bytes() .filter(|&b| b != b'\n' && b != b'\r') |
