diff options
| author | Mica White <botahamec@outlook.com> | 2026-07-29 21:19:57 -0400 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-07-29 21:19:57 -0400 |
| commit | c687e2aba30ca231b03288108b632f1bad464028 (patch) | |
| tree | 6134233d24211510eb674417d3374615a74b8268 /Cargo.toml | |
| parent | 20ecfc902cc5a654a079e9ba22c41179aca221bb (diff) | |
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -4,18 +4,28 @@ version = "0.1.0" edition = "2024" [dependencies] +bpaf = { version = "0.9", features = ["derive"] } bytemuck = { version = "1", features = ["derive"] } crossterm = "0.29" etcetera = "0.11" getrandom = "0.4" +hex_color = "3" +chrono = "0.4" log = "0.4" +mlua = { version = "0.12", features = ["lua51", "vendored", "serde", "send", "error-send"] } mimalloc = "0.1" -postcard = "1" +postcard = { version = "1", features = ["use-std"] } +prologger = "0.3" puffin = "0.20" puffin_http = "0.17" rustc-hash = "2" serde = { version = "1", features = ["derive"] } smol = "2" +spin = "0.12" +tinywasm = { path = "../tinywasm/crates/tinywasm" } toml = "1" -wasmer = { version = "7" } -wasmi = "1" + +[profile.release] +opt-level = 'z' +lto = true +panic = "abort" |
