16 lines
356 B
TOML
Raw Normal View History

2025-03-24 01:03:09 +01:00
[package]
name = "jisspam"
version = "0.1.0"
edition = "2024"
[dependencies]
fxhash = "0.2.1"
tokio = { version = "1.44.1", features = ["full"] }
2025-03-24 02:39:12 +01:00
[profile.release]
codegen-units = 1 # less means more compile work but better optimized
2025-10-04 15:58:40 +02:00
lto = "fat" # thin has best performance. fat the worst
strip = true
2025-10-04 15:58:40 +02:00
# opt-level = "z" # slows down
2025-03-24 02:39:12 +01:00
panic = "abort"