cargo_hoist/
lib.rs

1#![doc = include_str!("../README.md")]
2#![doc(
3    html_logo_url = "https://raw.githubusercontent.com/refcell/cargo-hoist/main/etc/logo.png",
4    html_favicon_url = "https://raw.githubusercontent.com/refcell/cargo-hoist/main/etc/favicon.ico",
5    issue_tracker_base_url = "https://github.com/refcell/cargo-hoist/issues/"
6)]
7#![warn(
8    missing_debug_implementations,
9    missing_docs,
10    unreachable_pub,
11    rustdoc::all
12)]
13#![deny(unused_must_use, rust_2018_idioms)]
14#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
15
16pub mod binaries;
17pub mod cli;
18pub mod executables;
19pub mod project;
20pub mod registry;
21pub mod shell;
22pub mod telemetry;
23pub mod utils;
24
25#[doc(inline)]
26pub use cli::run;
27#[doc(inline)]
28pub use cli::Args;
29#[doc(inline)]
30pub use cli::Command;