Initial commit: Veritas Cura System Optimization and Repair Suite Modules

This commit is contained in:
2026-07-28 20:43:06 +02:00
commit 435b8358af
17 changed files with 121 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "association-fix"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🔗 Veritas AssociationFix v1.0");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "easyrescue"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("📸 Veritas EasyRescue v1.0");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "one-click-clean"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🧹 Veritas One-Click Clean v1.0");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "port-doctor"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🔌 Veritas PortDoctor v1.0 (USB Cleaner)");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "privacy-shield"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🛡️ Veritas Privacy Shield v1.0");
Ok(())
}
Submodule
+1
Submodule spooler-reset added at f117cc98c4
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "system-integrator"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("⚙️ Veritas SystemIntegrator v1.0 (SFC / DISM Automation)");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "systemdoktor"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🩺 Veritas SystemDoktor v1.0");
Ok(())
}
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "update-fix"
version.workspace = true
edition.workspace = true
authors.workspace = true
[dependencies]
veritas-core = { path = "../../veritas-core" }
anyhow.workspace = true
+6
View File
@@ -0,0 +1,6 @@
use anyhow::Result;
fn main() -> Result<()> {
println!("🔄 Veritas UpdateFix v1.0");
Ok(())
}