From 570e8a172c9575b605396ef44a29fa7d24804447 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Fri, 6 Mar 2026 20:27:13 +0000 Subject: [PATCH] wip: config --- src/main.rs | 2 ++ test_config.toml => testing_config.toml | 0 2 files changed, 2 insertions(+) rename test_config.toml => testing_config.toml (100%) diff --git a/src/main.rs b/src/main.rs index 4057763..c4eaceb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,6 +16,8 @@ mod cpu; struct Args { #[arg(short, long, value_name = "FILE")] config: Option, + #[arg(short, long)] + dry_run: bool, } fn main() { diff --git a/test_config.toml b/testing_config.toml similarity index 100% rename from test_config.toml rename to testing_config.toml