this post was submitted on 23 Nov 2024
17 points (94.7% liked)
Rust Programming
8188 readers
41 users here now
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Typically rust programs are statically linked, meaning the executable contains all the dependencies needed to run it, with the exception of libc, unless you're using musl. So no dependency worries basically.
Probably wise to install something like cargo-cleaner (on crates.io). Those target/ folders in rust projects can get pretty big.