pwdm 0.3.1

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

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