wincredentials 0.3.0

A wrapper around the Win32 API credential management functions.
docs.rs failed to build wincredentials-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: wincredentials-0.2.0

Crates.io docs.rs

wincredentials-rs

A wrapper around the Win32 API credential management functions. Currently only supports generic credentials.

Example

use wincredentials::*;

fn main() {
  let _ = write_credential("test_target", credential::Credential{
    username: "username".to_owned(),
    secret: "test".to_owned(),
  });
  
  let cred = read_credential("test_target").unwrap();
  println!(cred.username);
  println!(cred.secret);
  
  let _ = delete_credential("test_target");
}