Crates.io | ystd |
lib.rs | ystd |
version | 0.0.11 |
created_at | 2025-07-07 03:20:39.708324+00 |
updated_at | 2025-08-13 03:04:25.581937+00 |
description | An opinionated and batteries included `std` mirror for convenient, correct code and pleasant error messages |
homepage | https://lib.rs/ystd |
repository | https://github.com/ActuallyHappening/YMap/tree/yit |
max_upload_size | |
id | 1740652 |
size | 65,118 |
An extension for many standard library types to provide a better default experience, esspecially in the world of async, namely:
tokio
color_eyre::Report
for beautiful error messages by defaultOption<T>
's are frequently replaced with colour_eyre::Result<T>
for better error messages and ?
instead of .unwrap()
in faster development scenariosystd::base64::decode
uses the ::base64::BASE64_STANDARD
engine only