initial skeleton

This commit is contained in:
stoorps 2026-03-19 18:46:50 +00:00
parent dc79fa2448
commit 71f89dde9c
Signed by: stoorps
SSH key fingerprint: SHA256:AZlPfu9hTu042EGtZElmDQoy+KvMOeShLDan/fYLoNI
60 changed files with 3480 additions and 0 deletions

21
crates/aim-cli/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "aim-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
path = "src/lib.rs"
[[bin]]
name = "aim"
path = "src/main.rs"
[dependencies]
clap.workspace = true
aim-core = { path = "../aim-core" }
[dev-dependencies]
assert_cmd.workspace = true
predicates = "3.1.3"
tempfile.workspace = true