Crates.io | windows-registry |
lib.rs | windows-registry |
version | 0.3.0 |
source | src |
created_at | 2024-02-15 05:27:39.377652 |
updated_at | 2024-09-25 11:45:35.645098 |
description | Windows registry |
homepage | |
repository | https://github.com/microsoft/windows-rs |
max_upload_size | |
id | 1140682 |
size | 42,910 |
The windows-registry crate provides simple, safe, and efficient access to the Windows registry.
Start by adding the following to your Cargo.toml file:
[dependencies.windows-registry]
version = "0.3"
Read and write registry keys and values as needed:
use windows_registry::*;
fn main() -> Result<()> {
let key = CURRENT_USER.create("software\\windows-rs")?;
key.set_u32("number", 123)?;
key.set_string("name", "Rust")?;
println!("{}", key.get_u32("number")?);
println!("{}", key.get_string("name")?);
Ok(())
}