tsk-77: Print version of the software #86

Merged
kdeng00 merged 5 commits from tsk-77 into main 2025-10-22 21:40:12 -04:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 3805cb36aa - Show all commits
+1 -1
View File
@@ -48,7 +48,7 @@ impl ActionManager {
String::from("-ca"),
String::from("-smca"),
String::from("-t"),
String::from("-v")
String::from("-v"),
]
}
+3 -3
View File
@@ -1,6 +1,6 @@
pub fn print_version() {
let name = env!("CARGO_PKG_NAME");
let version = env!("CARGO_PKG_VERSION");
let name = env!("CARGO_PKG_NAME");
let version = env!("CARGO_PKG_VERSION");
println!("{name:?} {version:?}");
println!("{name:?} {version:?}");
}