noita_entangled_worlds/blob_guy/Cargo.toml

28 lines
565 B
TOML

[package]
name = "blob_guy"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
#crate-type = ["rlib"]
[profile.release]
lto = true
strip = true # Not having that causes wine debugger to crash.
panic = "abort"
split-debuginfo = "packed"
incremental=true
codegen-units=1
opt-level = 3
[dependencies]
noita_api = {path = "../noita_api"}
eyre = "0.6.12"
smallvec = "1.15.1"
rustc-hash = "2.1.1"
rayon = "1.11.0"
[dev-dependencies]
rupl = {git = "https://github.com/bgkillas/rupl.git", default-features = false, features = ["egui"] }
eframe = "0.32.1"