Initial commit: Veritas Forensics Suite Modules (VRE, VIM, VAN, Registry Explorer)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
[package]
|
||||
name = "vre"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
[dependencies]
|
||||
veritas-core = { path = "../../veritas-core" }
|
||||
tokio.workspace = true
|
||||
anyhow.workspace = true
|
||||
tracing.workspace = true
|
||||
@@ -0,0 +1,9 @@
|
||||
use anyhow::Result;
|
||||
use veritas_core::hwid::generate_hardware_id;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> Result<()> {
|
||||
println!("🛡️ Veritas Recovery Engine (VRE) v1.0");
|
||||
println!("Hardware-ID: {}", generate_hardware_id());
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user