15 lines
326 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
lto = "thin" # thin has best performance. fat the worst
strip = true
2025-03-24 02:39:12 +01:00
panic = "abort"