pwdm 0.2.0

Rudimentary command-line tool and Rust library for managing passwords.
Documentation
1
2
3
4
5
6
7
8
9
/*
Copyright 2024 Owain Davies
SPDX-License-Identifier: Apache-2.0
*/
#![doc = include_str!("../README.md")]
mod manager;

pub use manager::error::{Error, Result};
pub use manager::PwdManager;