[package] name = "rudir" version = "0.1.0" edition = "2021" description = "A simple and fast udp port forwarding tool" homepage = "https://github.com/Moeweb647252/rudir" repository = "https://github.com/Moeweb647252/rudir" readme = "README.md" license = "MIT" [build] rustflags = ["-C", "target-cpu=native"] [profile.release] lto = true strip = true panic = "abort" codegen-units = 1 opt-level = 3 [dependencies] clap = { version = "4.5.19", features = ["derive"] } hashbrown = "0.15.0" tokio = { version = "1.40.0", features = ["net", "macros", "rt-multi-thread"] }