Go language has a very good standard library: simple, extensive and well tested. It would be great to have something like that in Rust.
Usage examples can be found in src/bin folder.
They can be run with cargo run --bin NAME
command, for example:
cargo run --bin time
When a piece of functionality is needed, appropriate Go source code is copied from go1.20.6 and translated to Rust. Structures and functions are renamed to meet Rust naming conventions.
The same license as used by Go project. See LICENSE.