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
10
11
12
13
14
15
16
// net: networking primitives namespace.
//
//   Go                                  goish
//   ─────────────────────────────────   ──────────────────────────────────
//   "net/url"                           goish::net::url
//   "net/http"                          goish::net::http
//
// Go's `net` package itself contains Dial/Listen + IP address types;
// those remain a later milestone (see tracking #23).

pub mod http;
pub mod mail;
pub mod netip;
pub mod smtp;
pub mod textproto;
pub mod url;