little-kitty 0.0.3

A low-level interface for the Kitty Graphics Protocol
Documentation
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs)]
#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
// See: https://stackoverflow.com/a/61417700
// See: https://github.com/rust-lang/cargo/pull/11645#issuecomment-1536905941

mod utils;

/// Command.
pub mod command;

/// I/O.
pub mod io;

/// Placeholder.
pub mod placeholder;

/// Common utilities.
pub mod common;