feat: updates

This commit is contained in:
2023-09-09 00:33:22 +08:00
parent 11aaa45456
commit a32ef922c7
3 changed files with 29 additions and 54 deletions

View File

@@ -1,3 +1,7 @@
use std::str::FromStr;
use secstr::SecStr;
fn main() {
println!("Hello, world!");
let sec_str = SecStr::from_str("hello world").expect("secstr");
println!("{:?}", sec_str);
}