[package]
|
|
name = "jisspam"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
fxhash = "0.2.1"
|
|
tokio = { version = "1.44.1", features = ["full"] }
|
|
|
|
[profile.release]
|
|
codegen-units = 1 # less means more compile work but better optimized
|
|
lto = "thin" # thin has best performance. fat the worst
|
|
strip = true
|
|
panic = "abort"
|