mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
age-core: Improve crate documentation
This commit is contained in:
parent
c7a2e998c6
commit
e339d26e36
4 changed files with 23 additions and 0 deletions
|
@ -8,6 +8,10 @@ readme = "README.md"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
all-features = true
|
||||||
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
//! Core types and encoding operations used by the age file format.
|
||||||
|
|
||||||
use rand::{
|
use rand::{
|
||||||
distributions::{Distribution, Uniform},
|
distributions::{Distribution, Uniform},
|
||||||
thread_rng, RngCore,
|
thread_rng, RngCore,
|
||||||
|
@ -126,6 +128,7 @@ pub fn grease_the_joint() -> Stanza {
|
||||||
Stanza { tag, args, body }
|
Stanza { tag, args, body }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Decoding operations for age types.
|
||||||
pub mod read {
|
pub mod read {
|
||||||
use nom::{
|
use nom::{
|
||||||
branch::alt,
|
branch::alt,
|
||||||
|
@ -148,6 +151,8 @@ pub mod read {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Reads an age "arbitrary string".
|
||||||
|
///
|
||||||
/// From the age specification:
|
/// From the age specification:
|
||||||
/// ```text
|
/// ```text
|
||||||
/// ... an arbitrary string is a sequence of ASCII characters with values 33 to 126.
|
/// ... an arbitrary string is a sequence of ASCII characters with values 33 to 126.
|
||||||
|
@ -273,6 +278,7 @@ pub mod read {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Encoding operations for age types.
|
||||||
pub mod write {
|
pub mod write {
|
||||||
use cookie_factory::{
|
use cookie_factory::{
|
||||||
combinator::string,
|
combinator::string,
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
//! This crate contains common structs and functions used across the `age` crates.
|
||||||
|
//!
|
||||||
|
//! You are probably looking for the [`age`](https://crates.io/crates/age) crate
|
||||||
|
//! itself. You should only need to directly depend on this crate if you are
|
||||||
|
//! implementing a custom recipient type.
|
||||||
|
|
||||||
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
// Catch documentation errors caused by code changes.
|
// Catch documentation errors caused by code changes.
|
||||||
#![deny(broken_intra_doc_links)]
|
#![deny(broken_intra_doc_links)]
|
||||||
|
|
||||||
|
@ -8,4 +15,5 @@ pub mod format;
|
||||||
pub mod primitives;
|
pub mod primitives;
|
||||||
|
|
||||||
#[cfg(feature = "plugin")]
|
#[cfg(feature = "plugin")]
|
||||||
|
#[cfg_attr(docsrs, doc(cfg(feature = "plugin")))]
|
||||||
pub mod plugin;
|
pub mod plugin;
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
//! Common structs and constants for the age plugin system.
|
||||||
|
//!
|
||||||
|
//! These are shared between the client implementation in the `age` crate, and the plugin
|
||||||
|
//! implementations built around the `age-plugin` crate.
|
||||||
|
|
||||||
use rand::{thread_rng, Rng};
|
use rand::{thread_rng, Rng};
|
||||||
use secrecy::Zeroize;
|
use secrecy::Zeroize;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue