issue/lib.rs
1#![warn(clippy::all, clippy::pedantic, clippy::nursery, missing_docs)]
2
3//! Ever added a todo based on an open issue (perhaps in one of your dependencies)? Track the issue and be warned when it is
4//! closed!
5//!
6//! ```rust
7//!
8//! // Our trait implementation never returns an error, but until the `nevertype`
9//! // is stabilized, we need to use the unit type.
10//! #[issue::track(url="https://github.com/rust-lang/rust/issues/35121")]
11//! type Result<T> = core::result::Result<T, ()>;
12//! ```
13//!
14//! Once the tracked issue is resolved, a warning will be emitted during compile time.
15pub use ::macros::track;
16
17pub use ::lib::{GithubIssue, Issue, Level, Mode, APP_USER_AGENT, CONFIG_ENV};