init: initial commit with basic command handling

This commit is contained in:
user0-07161 2025-09-28 14:52:13 +02:00
commit ad75f01112
7 changed files with 801 additions and 0 deletions

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "irs"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.48", features = ["derive"] }
tokio = { version = "1.47.1", features = ["full"] }