gopher 0.0.3

Gopher protocol implementation
Build #90269 2018-03-06T02:27:54.367592+00:00
# rustc version
rustc 1.26.0-dev (5c1d29af0 2018-03-03)
# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading gopher v0.0.3
Documenting gopher v0.0.3
Running `rustdoc --crate-name gopher .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps`
error[E0432]: unresolved import `std::io::IoResult`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/client.rs:1:5
|
1 | use std::io::IoResult;
|     ^^^^^^^^^^^^^^^^^ no `IoResult` in `io`. Did you mean to use `Result`?

error[E0433]: failed to resolve. Could not find `net` in `io`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/client.rs:2:14
|
2 | use std::io::net::tcp::TcpStream;
|              ^^^ Could not find `net` in `io`

error[E0432]: unresolved import `std::io::BufferedReader`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/client.rs:30:13
|
30 |         use std::io::BufferedReader;
|             ^^^^^^^^^^^^^^^^^^^^^^^ no `BufferedReader` in `io`

error[E0432]: unresolved import `std::io::Reader`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/protocol.rs:3:15
|
3 | use std::io::{Reader, IoResult};
|               ^^^^^^ no `Reader` in `io`. Did you mean to use `Read`?

error[E0432]: unresolved import `std::io::IoResult`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/protocol.rs:3:23
|
3 | use std::io::{Reader, IoResult};
|                       ^^^^^^^^ no `IoResult` in `io`. Did you mean to use `Result`?

error[E0412]: cannot find type `TcpStream` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/client.rs:39:35
|
39 |     fn connect(&self) -> IoResult<TcpStream> {
|                                   ^^^^^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1  | use std::net::TcpStream;
|

error[E0658]: The attribute `deriving` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/protocol.rs:6:1
|
6 | #[deriving(Copy, Show, PartialEq, Eq, FromPrimitive)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable

error[E0658]: The attribute `deriving` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/protocol.rs:26:1
|
26 | #[deriving(Copy, Show, PartialEq, Eq)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable

error[E0658]: The attribute `deriving` is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/protocol.rs:41:1
|
41 | #[deriving(Show, PartialEq, Eq)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable

error: aborting due to 9 previous errors

You've got a few errors: E0412, E0432, E0433, E0658
If you want more information on an error, try using "rustc --explain E0412"
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `gopher`.,
cause: process didn't exit successfully: `rustdoc --crate-name gopher .cargo/registry/src/github.com-1ecc6299db9ec823/gopher-0.0.3/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.