osc94 0.1.2

Library for handling progress bar sequences (OSC 9;4).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]
#![deny(missing_docs)]
#![warn(clippy::all, clippy::nursery, clippy::pedantic, clippy::cargo)]

#[cfg(test)]
extern crate std;

#[cfg(feature = "std")]
mod progress;
pub mod raw;
mod state;

#[cfg(feature = "std")]
pub use progress::Progress;
pub use raw::OSC94;
pub use state::ProgressState;