Initialize Minecraft text generator project with basic structure and CLI functionality
This commit is contained in:
22
crates/bin/Cargo.toml
Normal file
22
crates/bin/Cargo.toml
Normal 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"] }
|
||||
Reference in New Issue
Block a user