ruc 1.0.3

Rust Util Collection
Documentation
[package]
name = "ruc"
version = "1.0.3"
authors = ["ccmlm"]
edition = "2021"
description = "Rust Util Collection"
keywords = ["error", "error-chain"]
categories = ["development-tools::debugging"]
license = "MIT"
homepage = "https://github.com/ccmlm/RUC"
repository = "https://github.com/ccmlm/RUC.git"

[dependencies]
once_cell = "1.9.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
nix = { version = "0.23.1", optional = true }
rand = { version = "0.8.4", optional = true }
time = { version = "0.3.6", features = ["formatting"] }

[features]
default = ["ansi"]
ansi = []
compact = []

rich = ["uau", "cmd"]
uau = ["nix", "rand"]
cmd = []