We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c1fd0 commit 8603831Copy full SHA for 8603831
src/gen/binary.rs
@@ -75,7 +75,7 @@ fn base64_decode(input: &str) -> Vec<u8> {
75
#[cfg(test)]
76
mod tests {
77
use super::*;
78
- use crate::{gen, hegel, Hegel};
+ use crate::{gen, Hegel};
79
80
#[test]
81
fn test_base64_roundtrip() {
tests/common/mod.rs
@@ -9,6 +9,7 @@ pub struct TempRustProject {
9
10
pub struct RunOutput {
11
pub status: ExitStatus,
12
+ #[allow(dead_code)]
13
pub stdout: String,
14
pub stderr: String,
15
}
0 commit comments