generated from PlexSheep/baserepo
Merge branch 'feat/cli' of https://git.cscherr.de/PlexSheep/pt into feat/cli
cargo devel CI / cargo CI (push) Successful in 2m14s
Details
cargo devel CI / cargo CI (push) Successful in 2m14s
Details
This commit is contained in:
commit
f6ea98286d
|
@ -6,12 +6,11 @@
|
||||||
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this
|
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this
|
||||||
//! "main crate". Most crates will only show up if you activate their feature.
|
//! "main crate". Most crates will only show up if you activate their feature.
|
||||||
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
|
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
|
||||||
|
|
||||||
#[cfg(feature = "bintols")]
|
#[cfg(feature = "bintols")]
|
||||||
pub use libpt_bintols as bintols;
|
pub use libpt_bintols as bintols;
|
||||||
|
#[cfg(feature = "cli")]
|
||||||
|
pub use libpt_cli as cli;
|
||||||
#[cfg(feature = "core")]
|
#[cfg(feature = "core")]
|
||||||
pub use libpt_core as core;
|
pub use libpt_core as core;
|
||||||
#[cfg(feature = "log")]
|
#[cfg(feature = "log")]
|
||||||
pub use libpt_log as log;
|
pub use libpt_log as log;
|
||||||
#[cfg(feature = "cli")]
|
|
||||||
pub use libpt_cli as cli;
|
|
||||||
|
|
Reference in New Issue