Crates.io | windows-env |
lib.rs | windows-env |
version | |
source | src |
created_at | 2024-10-12 15:08:22.314461+00 |
updated_at | 2025-03-26 07:09:02.123125+00 |
description | Easily manage Windows environment variables permanently. |
homepage | https://github.com/lxl66566/windows-env |
repository | https://github.com/lxl66566/windows-env |
max_upload_size | |
id | 1406582 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Easily manage Windows environment variables permanently, without the need to restart your system or terminal.
Features:
PATH
.Note:
[target."cfg(windows)".dependencies]
windows_env = "0.2.0"
cargo binstall windows-env # see cargo-binstall: https://github.com/cargo-bins/cargo-binstall
cargo install windows-env -F bin # or compile from source manually
binary usage: runs wenv -h
to see help message.
lib usage:
fn main() -> std::io::Result<()> {
windows_env::set("TEST_ENV", "test")?;
assert_eq!(windows_env::get("TEST_ENV")?.unwrap(), "test");
windows_env::remove("TEST_ENV")?;
assert!(windows_env::get("TEST_ENV")?.is_none());
windows_env::append("TEST_ENV", "test1")?;
windows_env::prepend("TEST_ENV", "test2")?;
assert_eq!(windows_env::get("TEST_ENV")?.unwrap(), "test2;test1");
windows_env::remove_from_list("TEST_ENV", "test2")?;
assert!(windows_env::exists_in_list("TEST_ENV", "test1")?);
windows_env::remove("TEST_ENV")?;
Ok(())
}