18 lines
381 B
TOML
18 lines
381 B
TOML
[package]
|
|
name = "tramp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.26", features = ["derive"] }
|
|
futures = "0.3.31"
|
|
pnet = "0.35.0"
|
|
tokio = { version = "1.43.0", features = ["sync", "fs", "io-util", "rt", "rt-multi-thread", "macros", "time"] }
|
|
rand = "0.8"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort" |