[package] name = "crab-net" version = "0.0.3" edition = "2021" authors = ["Flavio Bizzarri "] license = "Apache-2.0" description = " + TLS packets generator" readme = "README.md" homepage = "https://github.com/newfla/crab-net" repository = "https://github.com/newfla/crab-net" keywords = ["cli", "udp", "tcp", "tls", "traffic"] categories = ["command-line-utilities"] [dependencies] log = "0.4.22" simple_logger = "5.0.0" fastrand = "2.1.0" clap = "4.5.8" byte-unit = "5.1.4" coarsetime = "0.1.34" tokio = { version = "1.38.0", features = ["full"] } tokio-dtls-stream-sink = "0.6.0" openssl = { version = "0.10.64", features = ["vendored"] } tokio-native-tls = "0.3.1" kanal = "0.1.0-pre8" derive-new = "0.7.0" mimalloc = { version = "0.1.43", default-features = false } [profile.release] lto = true strip = true panic = "abort" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.18.0" # CI backends to support ci = "github" # The installers to generate for each app installers = [] # Target platforms to build apps for (Rust target-triple syntax) targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI pr-run-mode = "upload" # Ignore out-of-date contents allow-dirty = ["ci"]