usealloc::string::String;/// No-std friendly version of `std::env::var`. Returns `None` if the environment variable is not set
/// or we are in a no-std context.
pubfnvar(_key:&str)->Option<String>{#[cfg(feature ="std")]returnstd::env::var(_key).ok();#[cfg(not(feature ="std"))]returnNone;}