mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-08-01 16:17:35 -07:00
15 lines
365 B
Rust
15 lines
365 B
Rust
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
|
|
|
|
#[cfg(doctest)]
|
|
doc_comment::doctest!("../README.md");
|
|
|
|
// Core implementation
|
|
mod to;
|
|
pub use crate::to::{
|
|
beside::Beside, condense::CondenseBeside, dst_coercion::DstCoercion, to_function::to,
|
|
to_trait::To, with_destination::with_destination,
|
|
};
|
|
|
|
// Example use cases
|
|
pub mod ops;
|