init command

This commit is contained in:
Nick Pegg 2025-04-27 09:45:49 -07:00
parent 5debb179ca
commit d097116c37
11 changed files with 335 additions and 3 deletions

21
Cargo.lock generated
View file

@ -128,6 +128,7 @@ version = "0.2.0"
dependencies = [
"anyhow",
"clap",
"thiserror",
]
[[package]]
@ -165,6 +166,26 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "thiserror"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "2.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "unicode-ident"
version = "1.0.18"