| Crates.io | xstd |
| lib.rs | xstd |
| version | 0.2.0 |
| created_at | 2019-10-20 08:20:47.436071+00 |
| updated_at | 2020-03-07 07:54:56.45+00 |
| description | eXtended STandarD library |
| homepage | |
| repository | https://github.com/j-keck/xstd-rs |
| max_upload_size | |
| id | 174170 |
| size | 12,710 |
extended standard library for rust.
Things which i miss in rust's standard library.
Currently not much.
API doc: https://j-keck.github.io/xstd-rs/
Add xstd to the dependencies section in your Cargo.toml
[dependencies]
xstd = "0.2"
Import everything:
use xstd::prelude::*;
Or select only what you need:
use xstd::vec::Unlines;