├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── example.rs └── src └── nntp.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnenterprise/rust-nntp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnenterprise/rust-nntp/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnenterprise/rust-nntp/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnenterprise/rust-nntp/HEAD/README.md -------------------------------------------------------------------------------- /example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnenterprise/rust-nntp/HEAD/example.rs -------------------------------------------------------------------------------- /src/nntp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnenterprise/rust-nntp/HEAD/src/nntp.rs --------------------------------------------------------------------------------