goish 0.4.2

Write Rust using Go idioms — a Go-flavored standard library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
// net: networking primitives namespace.
//
//   Go                                  goish
//   ─────────────────────────────────   ──────────────────────────────────
//   "net/url"                           goish::net::url
//   "net/http" (v0.5)                   goish::net::http
//
// Go's `net` package itself contains Dial/Listen + IP address types;
// those live under v0.5's networking milestone (see tracking #23).

pub mod url;