goish 0.16.2

Goish Rust — write Rust using Go idioms. Ports Go's standard library and syntax so Go programmers can write Rust code that reads and feels like Go.
Documentation
1
2
3
4
5
6
7
8
9
// hash: namespace for non-cryptographic hashers.
//
//   Go                                  goish
//   ─────────────────────────────────   ──────────────────────────────────
//   "hash/crc32"                        goish::hash::crc32
//   "hash/fnv"                          goish::hash::fnv

pub mod crc32;
pub mod fnv;