stomp 0.11.0

A full STOMP 1.2 client implementation. Allows programs to interact with message queueing services like ActiveMQ and RabbitMQ.
Build #53403 2017-06-03 09:08:44

Build failed. If you want to re-trigger a documentation build, you can do it here. You can find more information on docs.rs builds documentation on the builds page.

# rustc version rustc 1.19.0-dev (28a93c1f4 2017-05-31)

# docs.rs version cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)

# build log Updating registry `https://github.com/rust-lang/crates.io-index` Downloading stomp v0.11.0 Downloading mio v0.3.7 Downloading lifeguard v0.3.0 Downloading nix v0.3.10 Downloading bytes v0.2.11 Fresh unicode-segmentation v0.1.3 Fresh log v0.3.8 Fresh slab v0.1.3 Compiling lifeguard v0.3.0 Fresh libc v0.2.23 Compiling bytes v0.2.11 Fresh bitflags v0.1.1 Fresh libc v0.1.12 Running `rustc --crate-name lifeguard .cargo/registry/src/github.com-1ecc6299db9ec823/lifeguard-0.3.0/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=e16862f541501379 -C extra-filename=-e16862f541501379 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow` Running `rustc --crate-name bytes .cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.2.11/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=be828516c03e66e5 -C extra-filename=-be828516c03e66e5 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow` Fresh time v0.1.37 Compiling nix v0.3.10 Running `rustc --crate-name nix .cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.3.10/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=e1fa99b6adab3857 -C extra-filename=-e1fa99b6adab3857 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern bitflags=/home/cratesfyi/cratesfyi/debug/deps/libbitflags-301b356014ab91f0.rlib --extern-version bitflags=bitflags,0.1.1 --extern libc=/home/cratesfyi/cratesfyi/debug/deps/liblibc-97e056cbafe784c4.rlib --extern-version libc=libc,0.1.12 --cap-lints allow` Compiling mio v0.3.7 Running `rustc --crate-name mio .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=7a0d00aad7718f95 -C extra-filename=-7a0d00aad7718f95 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern time=/home/cratesfyi/cratesfyi/debug/deps/libtime-162277ce7a864579.rlib --extern-version time=time,0.1.37 --extern nix=/home/cratesfyi/cratesfyi/debug/deps/libnix-e1fa99b6adab3857.rlib --extern-version nix=nix,0.3.10 --extern bytes=/home/cratesfyi/cratesfyi/debug/deps/libbytes-be828516c03e66e5.rlib --extern-version bytes=bytes,0.2.11 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8 --extern libc=/home/cratesfyi/cratesfyi/debug/deps/liblibc-97e056cbafe784c4.rlib --extern-version libc=libc,0.1.12 --extern slab=/home/cratesfyi/cratesfyi/debug/deps/libslab-5ac8faf758bce122.rlib --extern-version slab=slab,0.1.3 --cap-lints allow` error[E0277]: the trait bound `M: std::marker::Send` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/notify.rs:57:9 | 57 | impl<M> fmt::Debug for Notify<M> { | ^^^^^^^^^^ `M` cannot be sent between threads safely | = help: the trait `std::marker::Send` is not implemented for `M` = help: consider adding a `where M: std::marker::Send` bound = note: required by `notify::Notify` error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/handler.rs:8:5 | 8 | / fn readable(&mut self, event_loop: &mut EventLoop<Self>, token: Token, hint: ReadHint) { 9 | | } | |_____^ `Self` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `Self` = help: consider adding a `where Self: std::marker::Sized` bound = note: required by `event_loop::EventLoop` error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/handler.rs:11:5 | 11 | / fn writable(&mut self, event_loop: &mut EventLoop<Self>, token: Token) { 12 | | } | |_____^ `Self` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `Self` = help: consider adding a `where Self: std::marker::Sized` bound = note: required by `event_loop::EventLoop` error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/handler.rs:14:5 | 14 | / fn notify(&mut self, event_loop: &mut EventLoop<Self>, msg: Self::Message) { 15 | | } | |_____^ `Self` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `Self` = help: consider adding a `where Self: std::marker::Sized` bound = note: required by `event_loop::EventLoop` error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/handler.rs:17:5 | 17 | / fn timeout(&mut self, event_loop: &mut EventLoop<Self>, timeout: Self::Timeout) { 18 | | } | |_____^ `Self` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `Self` = help: consider adding a `where Self: std::marker::Sized` bound = note: required by `event_loop::EventLoop` error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/handler.rs:20:5 | 20 | / fn interrupted(&mut self, event_loop: &mut EventLoop<Self>) { 21 | | } | |_____^ `Self` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `Self` = help: consider adding a `where Self: std::marker::Sized` bound = note: required by `event_loop::EventLoop` error[E0277]: the trait bound `Self: std::marker::Sized` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/nonblock.rs:67:5 | 67 | fn into_non_block(self) -> Result<NonBlock<Self>>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Self` does not have a constant size known at compile-time | = help: the trait `std::marker::Sized` is not implemented for `Self` = help: consider adding a `where Self: std::marker::Sized` bound = note: required by `nonblock::NonBlock` error[E0277]: the trait bound `M: std::marker::Send` is not satisfied --> .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/notify.rs:58:5 | 58 | / fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { 59 | | write!(fmt, "Notify<?>") 60 | | } | |_____^ `M` cannot be sent between threads safely | = help: the trait `std::marker::Send` is not implemented for `M` = help: consider adding a `where M: std::marker::Send` bound = note: required by `notify::Notify` error: aborting due to previous error(s) thread 'main' panicked at 'ChainedError { error: Could not compile `mio`., cause: process didn't exit successfully: `rustc --crate-name mio .cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.3.7/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=7a0d00aad7718f95 -C extra-filename=-7a0d00aad7718f95 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern time=/home/cratesfyi/cratesfyi/debug/deps/libtime-162277ce7a864579.rlib --extern-version time=time,0.1.37 --extern nix=/home/cratesfyi/cratesfyi/debug/deps/libnix-e1fa99b6adab3857.rlib --extern-version nix=nix,0.3.10 --extern bytes=/home/cratesfyi/cratesfyi/debug/deps/libbytes-be828516c03e66e5.rlib --extern-version bytes=bytes,0.2.11 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8 --extern libc=/home/cratesfyi/cratesfyi/debug/deps/liblibc-97e056cbafe784c4.rlib --extern-version libc=libc,0.1.12 --extern slab=/home/cratesfyi/cratesfyi/debug/deps/libslab-5ac8faf758bce122.rlib --extern-version slab=slab,0.1.3 --cap-lints allow` (exit code: 101) }', src/bin/cratesfyi.rs:136 note: Run with `RUST_BACKTRACE=1` for a backtrace.