YAMLabyrinth skeleton v0.0.1

This commit is contained in:
2026-05-21 16:46:14 +03:00
commit aa9cb6ea53
14 changed files with 1650 additions and 0 deletions

25
Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "yamlabyrinth"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "go"
path = "src/bin/go.rs"
[lib]
name = "yamlabyrinth"
path = "src/lib.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
tera = "1"
similar = "2"
clap = { version = "4", features = ["derive"] }
rand = "0.8"
rand_chacha = "0.3"
dirs = "5"
anyhow = "1"
ratatui = "0.26"
crossterm = "0.27"