Shared libraries
Shared libraries
Posted Nov 26, 2025 9:28 UTC (Wed) by taladar (subscriber, #68407)In reply to: Shared libraries by jhoblitt
Parent article: APT Rust requirement raises questions
std::env::args is the Rust equivalent of the C argc and argv parameters, nothing more. The Rust CLI parsing functionality most commonly used is the clap crate which is not part of the standard library because there is no good reason to put something in the standard library when it doesn't have close ties to the language version.
