16 lines
370 B
TOML
16 lines
370 B
TOML
[package]
|
|
name = "unreal-niggery-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
|
|
[dependencies]
|
|
thiserror = "2.0.12"
|
|
widestring = "1.2.0"
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
lto = true # Link-time optimization.
|
|
opt-level = 3 # Optimization level 3.
|
|
codegen-units = 1 # Maximum size reduction optimizations.
|