fix: add missing imports for sha2, Command, and Stdio

This commit is contained in:
Andrew Phillips (aider)
2025-05-12 18:27:23 -03:00
parent a24612ccb8
commit 621985ccf0
2 changed files with 2 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
use std::io;
use sha2::{Digest, Sha256};
use sha2::{Digest, Sha256};
#[derive(Debug, Eq, PartialEq, Clone, Default)]
pub struct DigestEngineSha256 {