forked from nonsensical-dev/zenyx-engine
Basic repl
This commit is contained in:
commit
ecbfce64ed
20 changed files with 565 additions and 0 deletions
32
xtask/Cargo.toml
Normal file
32
xtask/Cargo.toml
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue