Basic repl

This commit is contained in:
Chance 2024-12-01 16:02:06 -05:00 committed by lily
commit 662ea67aa0
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
19 changed files with 564 additions and 0 deletions

32
xtask/Cargo.toml Normal file
View file

@ -0,0 +1,32 @@
[package]
name = "xtask"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
[profile.dev]
rpath = false
panic = "abort"
lto = "off"
opt-level = 0
debug = false
overflow-checks = false
incremental = true
codegen-units = 256
strip = "symbols"
debug-assertions = false
[profile.dev.package."*"]
opt-level = 0
debug = false
overflow-checks = false
incremental = true
codegen-units = 256
strip = "symbols"
debug-assertions = false