rust-tcp-file-transfer/Cargo.toml

18 lines
249 B
TOML
Raw Permalink Normal View History

2023-09-14 08:29:32 +03:00
[package]
name = "rust-tcp-file-transfer"
version = "0.1.0"
edition = "2021"
2023-10-21 23:29:55 +03:00
[profile.release]
strip = "symbols"
2023-10-21 23:41:25 +03:00
opt-level = 3
overflow-checks = true
lto = true
2024-01-03 14:22:14 +03:00
codegen-units = 1
2024-01-03 14:30:12 +03:00
panic = "abort"
2023-11-20 13:37:31 +00:00
[lints.rust]
unsafe_code = "forbid"
2023-09-14 08:29:32 +03:00
[dependencies]