Initialize Minecraft text generator project with basic structure and CLI functionality

This commit is contained in:
2026-03-23 00:56:19 +01:00
commit 55d730d542
20 changed files with 900 additions and 0 deletions

22
crates/bin/Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "minecraft-text-generator"
version = "0.1.0"
edition = "2024"
default-run = "minecraft-text-generator"
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = 3
[dependencies]
lib = { path = "../lib" }
exporters = { path = "../exporters" }
clap = { version = "4.6.0", features = ["derive"] }
anyhow = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }