stry-common 0.1.3

Shared code for stry crates, from backends to frontends, they all depend on this.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(rust_2018_idioms)]

pub mod utils;

pub mod backend;
pub mod config;
pub mod error;
pub mod layered;
pub mod models;
pub mod uri;

#[cfg(feature = "with-nanoid")]
#[doc(inline)]
pub use crate::utils::nanoid::nanoid;