generated from PlexSheep/baserepo
feat(cli): add cli crate export to libpt
cargo devel CI / cargo CI (push) Has been cancelled
Details
cargo devel CI / cargo CI (push) Has been cancelled
Details
This commit is contained in:
parent
1c78801101
commit
3fd04a695d
|
@ -6,9 +6,12 @@
|
|||
//! `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.
|
||||
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
|
||||
|
||||
#[cfg(feature = "bintols")]
|
||||
pub use libpt_bintols as bintols;
|
||||
#[cfg(feature = "core")]
|
||||
pub use libpt_core as core;
|
||||
#[cfg(feature = "log")]
|
||||
pub use libpt_log as log;
|
||||
#[cfg(feature = "cli")]
|
||||
pub use libpt_cli as cli;
|
||||
|
|
Reference in New Issue