diff --git a/src/main.rs b/src/main.rs index c894f96..e0b4f02 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ fn main() -> anyhow::Result<()> { if arg != "-v" { return Err(anyhow!("usage: rwm [-v]")); } else { - println!("version goes here ;P"); // TODO: Sus out version info from cargo + println!(env!("CARGO_PKG_VERSION")); // TODO: test this return Ok(()); } }