age-core: Re-export secrecy crate

This commit is contained in:
Jack Grigg 2021-10-18 13:40:32 +01:00
parent bbe8d518fb
commit c7a2e998c6
25 changed files with 45 additions and 38 deletions

View file

@ -8,6 +8,7 @@ to 1.0.0 are beta releases.
## [Unreleased]
### Added
- `age_core::secrecy`, which re-exports the `secrecy` crate.
- `age_core::plugin::Error`
### Changed

View file

@ -1,6 +1,9 @@
// Catch documentation errors caused by code changes.
#![deny(broken_intra_doc_links)]
// Re-export crates that are used in our public API.
pub use secrecy;
pub mod format;
pub mod primitives;