Skip to main content

onepass_base/
lib.rs

1//! Basic text formatting and hashing routines for use in [onepass].
2//!
3//! This crate mainly exists to provide routines to the `onepass-seed` crate that are used at both
4//! build time and runtime by the latter. The provided routines are used to instantiate a
5//! compile-time default word list that ships with onepass.
6//!
7//! [onepass]: https://github.com/mrdomino/onepass
8
9pub mod dict;
10pub mod fmt;