17 lines
249 B
TOML
17 lines
249 B
TOML
[package]
|
|
name = "rust-tcp-file-transfer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
strip = "symbols"
|
|
opt-level = 3
|
|
overflow-checks = true
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[dependencies]
|