Crates.io | hide |
lib.rs | hide |
version | 0.1.5 |
source | src |
created_at | 2023-11-20 15:11:36.52827 |
updated_at | 2024-05-21 12:07:35.241203 |
description | Hide credentials from debug output |
homepage | |
repository | https://github.com/ctron/hide |
max_upload_size | |
id | 1042330 |
size | 7,320 |
Hide secrets from logs.
You might ask: "A crate, for a simple feature like this?". Yes, maybe this type will be shared between crates. Compared to multiple different types in different crates.
hide = "0.1
use hide::Hide;
#[derive(Debug)]
pub struct MyStruct {
username: String,
password: Hide<String>,
}
fn example1() {
let data = MyStruct {
username: "user".to_string(),
password: "password".to_string().into(),
};
println!("{data:#?}");
}
Will give you:
MyStruct {
username: "user",
password: ***,
}