ustyle 0.1.1

A text-styling library for Rust `no_std` embedded targets.
Documentation
[package]
name = "ustyle"
version = "0.1.1"
edition = "2024"
categories = ["no-std", "no-std::no-alloc", "command-line-interface", "embedded", "parser-implementations"]
keywords = ["style", "ansi", "terminal", "console", "color"]
description = "A text-styling library for Rust `no_std` embedded targets."
authors = ["Mikail Plotzky <mp@ypon.com>"]
license = "MIT"

[dependencies]
bitflags = "2.10.0"
memchr = { version = "2.7.6", default-features = false, optional = true }

[dev-dependencies]
heapless = "0.9.2"

[features]
# Enable heap allocations by default
default = ["alloc"]

# Enable heap allocations
alloc = ["memchr"]