Dengan info debug yang disertakan, biner saya menjadi sekitar 400 MB. Ini terjadi karena Rust menyertakan info debug untuk semua dependensi. Apakah ada cara untuk memasukkan info debug hanya untuk kode saya?
[package]
name = "app"
version = "0.7.1"
edition = "2018"
[dependencies]
actix = "*"
actix-web = {version = "1.0", features = ["ssl"]}
...
tokio-core = "*"
tokio = "*"
[profile.release]
debug = true
rust
rust-cargo
anatol
sumber
sumber