Skip to content

Kubernetes tests don't work locally #2193

Description

@MOZGIII

A follow up after #2134.

Commands below don't work for me:

$ cd tests
$ make test-kubernetes
Details
/home/mozgiii/Desktop/vector/scripts/docker-compose-run.sh build-x86_64
No stopped containers
Step 1/125 : ARG LLVM_VERSION=9.0.0
Step 2/125 : ARG LLVM_GIT_COMMIT=71fe7ec06b85f612fc0e4eb4134c7a7d0f23fac5
Step 3/125 : ARG MUSL_VERSION=1.1.22
Step 4/125 : ARG TARGET="x86_64-unknown-linux-musl"
Step 5/125 : ARG LLVM_TARGET="X86"
Step 6/125 : ARG LINUX_TARGET="x86"
Step 7/125 : ARG GNU_TARGET=""
Step 8/125 : ARG LTO=""
Step 9/125 : ARG LINUX_HEADERS_VERSION=5.3.10
Step 10/125 : ARG RUST_PREFIX=/opt/rust
Step 11/125 : ARG CLANG_PREFIX=/usr
Step 12/125 : ARG LIBS_PREFIX=/opt/libs
Step 13/125 : FROM ubuntu:19.10 AS libs-builder
 ---> dcbcfdcd50bb
Step 14/125 : ARG CLANG_PREFIX
 ---> Using cache
 ---> 9d40badcb46e
Step 15/125 : RUN apt-get update && apt-get install -y llvm clang lld
 ---> Using cache
 ---> 74fe79d92b40
Step 16/125 : RUN apt-get update && apt-get -y install curl xz-utils
 ---> Using cache
 ---> 8d8374da88c2
Step 17/125 : ARG LLVM_VERSION
 ---> Using cache
 ---> dd850b938c76
Step 18/125 : RUN curl --proto '=https' --tlsv1.2 -sSfL   https://github.com/llvm/llvm-project/archive/llvmorg-$LLVM_VERSION.tar.gz |   tar xzf -
 ---> Using cache
 ---> f44835c09386
Step 19/125 : ENV LLVM_DIR $SRC_DIR/llvm-project-llvmorg-$LLVM_VERSION
 ---> Using cache
 ---> 2853521f0318
Step 20/125 : ARG MUSL_VERSION
 ---> Using cache
 ---> 50c3c03ca67c
Step 21/125 : RUN curl --proto '=https' --tlsv1.2 -sSf   https://www.musl-libc.org/releases/musl-$MUSL_VERSION.tar.gz |   tar xzf -
 ---> Using cache
 ---> f9936705ae6c
Step 22/125 : ENV MUSL_DIR $SRC_DIR/musl-$MUSL_VERSION
 ---> Using cache
 ---> c230d26fff07
Step 23/125 : ARG LINUX_HEADERS_VERSION
 ---> Using cache
 ---> 4293ba0323b5
Step 24/125 : RUN curl --proto '=https' --tlsv1.2 -sSf   https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-$LINUX_HEADERS_VERSION.tar.xz |   tar xJf -
 ---> Using cache
 ---> c43bb0cda57b
Step 25/125 : ENV LINUX_DIR $SRC_DIR/linux-$LINUX_HEADERS_VERSION
 ---> Using cache
 ---> e5f5360b25d6
Step 26/125 : RUN apt-get update && apt-get -y install rsync ninja-build cmake python3-distutils clang llvm lld
 ---> Using cache
 ---> 59ff2c38a16e
Step 27/125 : ARG TARGET
 ---> Using cache
 ---> 8a757178d0e0
Step 28/125 : ARG CLANG_PREFIX
 ---> Using cache
 ---> a88dbbc8d76b
Step 29/125 : ARG LIBS_PREFIX
 ---> Using cache
 ---> 838bcfd75ded
Step 30/125 : ARG GNU_TARGET
 ---> Using cache
 ---> 07f61230f743
Step 31/125 : RUN apt-get install -y gcc${GNU_TARGET:+-${GNU_TARGET}} g++${GNU_TARGET:+-${GNU_TARGET}}
 ---> Using cache
 ---> 0228efa2e265
Step 32/125 : WORKDIR $LLVM_DIR/compiler-rt
 ---> Using cache
 ---> 8c4b00512562
Step 33/125 : ENV CC=${GNU_TARGET:+${GNU_TARGET}-}gcc
 ---> Using cache
 ---> 703d6d8e3c6d
Step 34/125 : ENV CXX=${GNU_TARGET:+${GNU_TARGET}-}g++
 ---> Using cache
 ---> 70219e5c7311
Step 35/125 : ENV CFLAGS=""
 ---> Using cache
 ---> cd1a94ddb485
Step 36/125 : ENV CXXFLAGS=""
 ---> Using cache
 ---> 58c1f169cabe
Step 37/125 : ENV LDFLAGS=""
 ---> Using cache
 ---> d610212ca393
Step 38/125 : RUN mkdir build &&   cd build &&   cmake     -DCMAKE_BUILD_TYPE=release     -DLLVM_CONFIG_PATH=$CLANG_PREFIX/bin/llvm-config 		-DCOMPILER_RT_DEFAULT_TARGET_TRIPLE=$TARGET     -DCOMPILER_RT_BUILD_SANITIZERS=OFF     -DCOMPILER_RT_BUILD_LIBFUZZER=OFF     -DCOMPILER_RT_BUILD_XRAY=OFF     -DCOMPILER_RT_BUILD_PROFILE=OFF     -DCMAKE_INSTALL_PREFIX=$LIBS_PREFIX     -G Ninja     .. &&   cmake --build . --target install
 ---> Using cache
 ---> 644f5bd7f1b6
Step 39/125 : WORKDIR $MUSL_DIR
 ---> Using cache
 ---> 8a3349cc2412
Step 40/125 : ENV CC=clang
 ---> Using cache
 ---> 35b9d46e566b
Step 41/125 : ENV CFLAGS="-target $TARGET -nostdinc -isystem $LIBS_PREFIX/include -D_Noreturn="
 ---> Using cache
 ---> c319a77faacf
Step 42/125 : ENV LDFLAGS="-fuse-ld=lld -static -nostdlib -nostartfiles"
 ---> Using cache
 ---> 09737cc96831
Step 43/125 : ENV CROSS_COMPILE=$CLANG_PREFIX/bin/
 ---> Using cache
 ---> ae3ebf0fe9ba
Step 44/125 : RUN cd $MUSL_DIR &&   mkdir build &&   cd build &&   ../configure   --target=$TARGET   --prefix=$LIBS_PREFIX   --disable-shared   --disable-gcc-wrapper &&   make -j$(nproc) install
 ---> Using cache
 ---> 61198fee7ada
Step 45/125 : WORKDIR $LINUX_DIR
 ---> Using cache
 ---> ccf6deeade1e
Step 46/125 : ARG LINUX_TARGET
 ---> Using cache
 ---> 1f2679e03c8b
Step 47/125 : ENV CC=clang
 ---> Using cache
 ---> 88ff005d077b
Step 48/125 : ENV CFLAGS="-target $TARGET -nostdinc -isystem $LIBS_PREFIX/include"
 ---> Using cache
 ---> 8dd15d8f492e
Step 49/125 : ENV LDFLAGS="-fuse-ld=lld -static -nostdlib -nostartfiles"
 ---> Using cache
 ---> aec5b56a6949
Step 50/125 : RUN make -j$(nproc) headers_install   KBUILD_VERBOSE=1   HOSTCC="/usr/bin/gcc"   ARCH="$LINUX_TARGET"   CC="$CC"   INSTALL_HDR_PATH=$LIBS_PREFIX
 ---> Using cache
 ---> 3f3815399102
Step 51/125 : WORKDIR $LLVM_DIR/libunwind
 ---> Using cache
 ---> cba4bf8bebac
Step 52/125 : ENV CC=clang
 ---> Using cache
 ---> fbf8101b9c08
Step 53/125 : ENV CXX=clang++
 ---> Using cache
 ---> 52aad348c629
Step 54/125 : ENV CFLAGS="-target $TARGET -nostdinc -isystem $LIBS_PREFIX/include"
 ---> Using cache
 ---> 97fae1eb6cae
Step 55/125 : ENV CXXFLAGS="$CFLAGS -nostdinc++ -I$LLVM_DIR/libcxx/include"
 ---> Using cache
 ---> 5a39493f7178
Step 56/125 : ENV LDFLAGS="-fuse-ld=lld -static -nostdlib -nostartfiles -L$LIBS_PREFIX/lib -lc"
 ---> Using cache
 ---> c82dfec2640c
Step 57/125 : RUN mkdir build &&   cd build &&   cmake   -DCMAKE_BUILD_TYPE=release   -DLIBUNWIND_ENABLE_SHARED=OFF   -DLIBUNWIND_INSTALL_PREFIX=$LIBS_PREFIX/   -DLLVM_PATH=$LLVM_DIR   -G Ninja   .. &&   cmake --build . --target install
 ---> Using cache
 ---> d5dc709a293e
Step 58/125 : WORKDIR $LLVM_DIR/libcxxabi
 ---> Using cache
 ---> 42920c242f54
Step 59/125 : ENV CC=clang
 ---> Using cache
 ---> 416bb41b4ce9
Step 60/125 : ENV CXX=clang++
 ---> Using cache
 ---> aa3320d19861
Step 61/125 : ENV CFLAGS="-target $TARGET -nostdinc -isystem $LIBS_PREFIX/include"
 ---> Using cache
 ---> 90dcc002a959
Step 62/125 : ENV CXXFLAGS="$CFLAGS -nostdinc++ -I$LLVM_DIR/libcxx/include"
 ---> Using cache
 ---> 00955e113c6e
Step 63/125 : ENV LDFLAGS="-fuse-ld=lld -static -nostdlib -nostartfiles -L$LIBS_PREFIX/lib -lunwind -lc"
 ---> Using cache
 ---> be9cd14f97ca
Step 64/125 : RUN mkdir build &&   cd build &&   cmake   -DCMAKE_BUILD_TYPE=release   -DLIBCXXABI_ENABLE_SHARED=OFF   -DLIBCXXABI_USE_LLVM_UNWINDER=ON   -DLIBCXXABI_LIBUNWIND_PATH=$LLVM_DIR/libunwind   -DLIBCXXABI_LIBCXX_INCLUDES=$LLVM_DIR/libcxx/include   -DLIBCXXABI_INSTALL_PREFIX=$LIBS_PREFIX/   -DLLVM_PATH=$LLVM_DIR   -G Ninja   .. &&   cmake --build . --target install
 ---> Using cache
 ---> ca6e66067600
Step 65/125 : WORKDIR $LLVM_DIR/libcxx
 ---> Using cache
 ---> 3cf39bdcd6f6
Step 66/125 : ENV CC=clang
 ---> Using cache
 ---> 9b8626cc4fdd
Step 67/125 : ENV CXX=clang++
 ---> Using cache
 ---> ab4996ff0c7b
Step 68/125 : ENV CFLAGS="-target $TARGET -nostdinc -isystem $LIBS_PREFIX/include"
 ---> Using cache
 ---> 0199cdde1f6e
Step 69/125 : ENV CXXFLAGS="$CFLAGS -nostdinc++ -I$LIBS_PREFIX/include/c++/v1"
 ---> Using cache
 ---> cf45257de104
Step 70/125 : ENV LDFLAGS="-fuse-ld=lld -static -nostdlib -nostartfiles -L$LIBS_PREFIX/lib -lc++abi -lunwind -lc"
 ---> Using cache
 ---> 014e0b481d36
Step 71/125 : RUN mkdir build &&   cd build &&   cmake   -DCMAKE_BUILD_TYPE=release   -DLIBCXX_ENABLE_SHARED=OFF   -DLIBCXX_HAS_MUSL_LIBC=ON   -DLIBCXX_HAS_GCC_S_LIB=OFF   -DLIBCXX_CXX_ABI=libcxxabi   -DLIBCXX_CXX_ABI_INCLUDE_PATHS=$LLVM_DIR/libcxxabi/include   -DLIBCXX_CXX_ABI_LIBRARY_PATH=$LIBS_PREFIX   -DLIBCXX_INSTALL_PREFIX=$LIBS_PREFIX/   -DLIBCXX_INSTALL_HEADER_PREFIX=$LIBS_PREFIX/   -DLLVM_PATH=$LLVM_DIR   -G Ninja   .. &&   cmake --build . --target install
 ---> Using cache
 ---> a3683218ad62
Step 72/125 : ENV MUSL_CFLAGS="-target $TARGET -nostdinc -isystem $LIBS_PREFIX/include"
 ---> Using cache
 ---> d0fcb267a1f6
Step 73/125 : ENV MUSL_CXXFLAGS="$MUSL_CFLAGS -nostdinc++ -I$LIBS_PREFIX/include/c++/v1"
 ---> Using cache
 ---> 58c8da359c9c
Step 74/125 : ENV MUSL_LDFLAGS="-fuse-ld=lld -static -nostdlib -nostartfiles -L$LIBS_PREFIX/lib -L$LIBS_PREFIX/lib/linux -lc++ -lc++abi -lunwind -l$(basename /opt/libs/lib/linux/libclang_rt.builtins* | tail -c+4 | head -c-3) -lc"
 ---> Using cache
 ---> 0d4a16e122a4
Step 75/125 : ENV MUSL_STARTFILES="$LIBS_PREFIX/lib/crt1.o $(find $LIBS_PREFIX/lib/linux -iname 'clang_rt.crtbegin*.o') $(find $LIBS_PREFIX/lib/linux -iname 'clang_rt.crtend*.o')"
 ---> Using cache
 ---> 57eb45766f24
Step 76/125 : RUN mkdir -p $LIBS_PREFIX/bin
 ---> Using cache
 ---> 4c909e140b84
Step 77/125 : RUN echo   "#!/bin/sh\n"  "case \"\$@\" in *-shared*);; *-nostdlib*);; *) STARTFILES=\"$MUSL_STARTFILES\";; esac\n"  "$CLANG_PREFIX/bin/clang -Qunused-arguments $MUSL_CFLAGS \$@ \$STARTFILES $MUSL_LDFLAGS\n"  "exit \$?" > $LIBS_PREFIX/bin/musl-cc
 ---> Using cache
 ---> 5a39a51cba6f
Step 78/125 : RUN echo   "#!/bin/sh\n"  "case \"\$@\" in *-shared*);; *-nostdlib*);; *) STARTFILES=\"$MUSL_STARTFILES\";; esac\n"  "$CLANG_PREFIX/bin/clang++ -Qunused-arguments $MUSL_CXXFLAGS \$@ \$STARTFILES $MUSL_LDFLAGS\n"  "exit \$?" > $LIBS_PREFIX/bin/musl-c++
 ---> Using cache
 ---> b7e6e90b8fc8
Step 79/125 : RUN chmod +x $LIBS_PREFIX/bin/*
 ---> Using cache
 ---> 5d205290da94
Step 80/125 : RUN ln -s $LIBS_PREFIX/bin/musl-cc $LIBS_PREFIX/bin/cc
 ---> Using cache
 ---> 3b52e9eca301
Step 81/125 : RUN ln -s $LIBS_PREFIX/bin/musl-cc $LIBS_PREFIX/bin/gcc
 ---> Using cache
 ---> f51809dd1bf4
Step 82/125 : RUN if [ -n "$GNU_TARGET" ]; then ln -s $LIBS_PREFIX/bin/musl-cc $LIBS_PREFIX/bin/$(echo $GNU_TARGET | sed 's/gnu/musl/g')-gcc; fi
 ---> Using cache
 ---> f8e820a4abf6
Step 83/125 : RUN ln -s $LIBS_PREFIX/bin/musl-cc $LIBS_PREFIX/bin/musl-gcc
 ---> Using cache
 ---> 952b1af44f54
Step 84/125 : RUN ln -s $LIBS_PREFIX/bin/musl-c++ $LIBS_PREFIX/bin/c++
 ---> Using cache
 ---> 97e898f9abf2
Step 85/125 : RUN ln -s $LIBS_PREFIX/bin/musl-c++ $LIBS_PREFIX/bin/g++
 ---> Using cache
 ---> 7b6ae6dfa33f
Step 86/125 : RUN if [ -n "$GNU_TARGET" ]; then ln -s $LIBS_PREFIX/bin/musl-c++ $LIBS_PREFIX/bin/$(echo $GNU_TARGET | sed 's/gnu/musl/g')-g++; fi
 ---> Using cache
 ---> 83efd9a068d2
Step 87/125 : RUN ln -s $LIBS_PREFIX/bin/musl-c++ $LIBS_PREFIX/bin/musl-g++
 ---> Using cache
 ---> e661178566fc
Step 88/125 : RUN ln -s $CLANG_PREFIX/bin/llvm-ar $LIBS_PREFIX/bin/ar
 ---> Using cache
 ---> 006511545fb3
Step 89/125 : RUN ln -s $CLANG_PREFIX/bin/llvm-strip $LIBS_PREFIX/bin/strip
 ---> Using cache
 ---> 83192a35e685
Step 90/125 : RUN ln -s $CLANG_PREFIX/bin/ld.lld $LIBS_PREFIX/bin/ld
 ---> Using cache
 ---> cd2d745ac36c
Step 91/125 : RUN ln -s $CLANG_PREFIX/lib/clang/9.0.0/include/stdatomic.h $LIBS_PREFIX/include/stdatomic.h
 ---> Using cache
 ---> 100e483c9144
Step 92/125 : RUN ln -s $CLANG_PREFIX/lib/clang/9.0.0/include/emmintrin.h $LIBS_PREFIX/include/emmintrin.h
 ---> Using cache
 ---> bff3dfad7d22
Step 93/125 : RUN ln -s $CLANG_PREFIX/lib/clang/9.0.0/include/xmmintrin.h $LIBS_PREFIX/include/xmmintrin.h
 ---> Using cache
 ---> 99405825d405
Step 94/125 : RUN ln -s $CLANG_PREFIX/lib/clang/9.0.0/include/mmintrin.h $LIBS_PREFIX/include/mmintrin.h
 ---> Using cache
 ---> 3753bac8e258
Step 95/125 : RUN ln -s $CLANG_PREFIX/lib/clang/9.0.0/include/mm_malloc.h $LIBS_PREFIX/include/mm_malloc.h
 ---> Using cache
 ---> 00f46a34c9b5
Step 96/125 : RUN echo > dummy.c &&   $LIBS_PREFIX/bin/cc -c dummy.c &&   $CLANG_PREFIX/bin/llvm-ar cr $LIBS_PREFIX/lib/libstdc++.a dummy.o &&   rm dummy.c dummy.o
 ---> Using cache
 ---> 7e6ac0aa370d
Step 97/125 : FROM ubuntu:19.10
 ---> dcbcfdcd50bb
Step 98/125 : RUN apt-get update && apt-get install -y curl
 ---> Using cache
 ---> a937b5e8702c
Step 99/125 : ARG TARGET
 ---> Using cache
 ---> cd99d1d11bb4
Step 100/125 : ARG RUST_PREFIX
 ---> Using cache
 ---> 7d795bf04f54
Step 101/125 : ENV RUSTUP_HOME=$RUST_PREFIX/rustup
 ---> Using cache
 ---> 79f87491a3aa
Step 102/125 : ENV CARGO_HOME=$RUST_PREFIX/cargo
 ---> Using cache
 ---> bcdd6e037b87
Step 103/125 : COPY rust-toolchain /tmp/
 ---> Using cache
 ---> 9b7935004515
Step 104/125 : RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs |   sh -s -- -y --profile minimal --default-toolchain $(cat /tmp/rust-toolchain) --target $TARGET
 ---> Using cache
 ---> a1757cd05dd1
Step 105/125 : ENV PATH="$RUSTUP_HOME/bin:$CARGO_HOME/bin:$PATH"
 ---> Using cache
 ---> ffbec5b41954
Step 106/125 : RUN apt-get update && apt-get install -y llvm clang lld
 ---> Using cache
 ---> 3fd0cf2b7f7d
Step 107/125 : ARG LIBS_PREFIX
 ---> Using cache
 ---> aa9a80491445
Step 108/125 : COPY --from=libs-builder $LIBS_PREFIX $LIBS_PREFIX
 ---> Using cache
 ---> 3bc0eeb9c964
Step 109/125 : ENV PATH="$LIBS_PREFIX/bin:$PATH"
 ---> Using cache
 ---> 91e8e264bb60
Step 110/125 : RUN apt-get update && apt-get install -y --install-recommends build-essential cmake git
 ---> Using cache
 ---> 2d6b15293bc5
Step 111/125 : RUN echo   "#!/bin/sh\n"  "/usr/bin/gcc -B/usr/bin \$@\n"  "exit \$?" > $LIBS_PREFIX/bin/gnu-cc && chmod +x $LIBS_PREFIX/bin/gnu-cc
 ---> Using cache
 ---> f878c40c29a3
Step 112/125 : RUN echo   "#!/bin/sh\n"  "/usr/bin/g++ -B/usr/bin \$@\n"  "exit \$?" > $LIBS_PREFIX/bin/gnu-c++ && chmod +x $LIBS_PREFIX/bin/gnu-c++
 ---> Using cache
 ---> 7aad0cacaa88
Step 113/125 : ENV CC_x86_64_unknown_linux_gnu=gnu-cc
 ---> Using cache
 ---> a2fad4266dc0
Step 114/125 : ENV CXX_x86_64_unknown_linux_gnu=gnu-c++
 ---> Using cache
 ---> 247e25404a9a
Step 115/125 : ENV LD_x86_64_unknown_linux_gnu=/usr/bin/ld
 ---> Using cache
 ---> 0e1cd15a2b52
Step 116/125 : ENV AR_x86_64_unknown_linux_gnu=/usr/bin/ar
 ---> Using cache
 ---> a8036c6b753e
Step 117/125 : ENV CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=gnu-cc
 ---> Using cache
 ---> 7abfb84febe8
Step 118/125 : ENV BINDGEN_EXTRA_CLANG_ARGS="--sysroot=/opt/libs -target $TARGET"
 ---> Using cache
 ---> f54b6a3cd4f7
Step 119/125 : RUN mkdir -p ~/.cargo
 ---> Using cache
 ---> 1f11ca8cc678
Step 120/125 : RUN printf "[build]\ntarget = \"$TARGET\"\n" > ~/.cargo/config
 ---> Using cache
 ---> a75b4d097e43
Step 121/125 : RUN if [ -n "$GNU_TARGET"]; then apt-get update && apt-get install -y qemu-user; fi
 ---> Using cache
 ---> 5763d8368c84
Step 122/125 : RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata ca-certificates
 ---> Using cache
 ---> a3539b063048
Step 123/125 : ENV TARGET="$TARGET"
 ---> Using cache
 ---> d307048130de
Step 124/125 : RUN cargo install --git https://github.com/mmstick/cargo-deb --rev cc879930c06fa22e99f2839bad620ac0d0da879e cargo-deb
 ---> Using cache
 ---> 9ce8c4ae8e50
Step 125/125 : RUN apt-get install -y rename cmark-gfm
 ---> Using cache
 ---> a43ad5a66ec0
Successfully built a43ad5a66ec0
Successfully tagged vector_build-x86_64:latest
Attaching to vector_build-x86_64_1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Updating�[0m crates.io index
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Updating�[0m git repository `https://github.com/timberio/leveldb`
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Updating�[0m git repository `https://github.com/kyren/rlua`
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Updating�[0m git repository `https://github.com/tokio-rs/tracing`
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Updating�[0m git repository `https://github.com/timberio/warp`
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Updating�[0m git repository `https://github.com/timberio/leveldb-sys`
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m Downloading�[0m crates ...
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m jemallocator v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m chrono v0.4.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m glob v0.2.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m cc v1.0.50
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m http v0.1.21
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures v0.1.29
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m num_cpus v1.12.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m prost-types v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m openssl-probe v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m notify v4.0.15
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio v0.2.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m once_cell v1.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bytes v0.4.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m num-traits v0.2.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bitflags v1.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m mime_guess v2.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m pin-project v0.4.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m mime v0.3.16
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m getset v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m prost-derive v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m atty v0.2.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lazy_static v1.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m base64 v0.10.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m prost v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m serde_urlencoded v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ansi_term v0.11.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m cmake v0.1.42
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m structopt v0.2.18
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m toml v0.4.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m log v0.4.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m serde_json v1.0.45
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m serde v1.0.104
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m url v1.7.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m regex v1.3.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand v0.5.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m winapi v0.3.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m trust-dns-proto v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m trust-dns-resolver v0.12.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m libc v0.2.66
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio v0.1.22
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m async-trait v0.1.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m native-tls v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m syslog v5.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m strip-ansi-escapes v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-uds v0.2.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hostname v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-retry v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m listenfd v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m smpl_jwt v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crc v1.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m scan_fmt v0.2.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bloom v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lru v0.4.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hyper-openssl v0.7.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m stream-cancel v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m scoped-tls v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing-log v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m derive_is_enum_variant v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m built v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m goauth v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-util v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m exitcode v1.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m inventory v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-service v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m db-key v0.0.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m owning_ref v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m prost-build v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-codec v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-signal v0.2.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-openssl v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m urlencoding v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m string_cache v0.7.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_sts v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_cloudwatch v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hotmic v0.8.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_logs v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m snafu v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m grok v1.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-threadpool v0.1.17
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_kinesis v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_core v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m pulsar v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m derivative v1.0.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing-core v0.1.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m uuid v0.7.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-io v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m typetag v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_credential v0.41.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-compat v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_firehose v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m seahash v3.0.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m shiplift v0.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m colored v1.9.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m syslog_loose v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m logfmt v0.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m evmap v7.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m indexmap v1.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-layer v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing-futures v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m maxminddb v0.13.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bytesize v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing-subscriber v0.2.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m headers v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rusoto_s3 v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rdkafka v0.23.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hyper v0.12.35
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m nom v5.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m openssl v0.10.27
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m nix v0.16.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m flate2 v1.0.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bstr v0.2.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m iovec v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ryu v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m serde_derive v1.0.104
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m syn v0.15.44
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m syn v0.11.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m fnv v1.0.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m net2 v0.2.33
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-cpupool v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m sha-1 v0.8.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m onig v4.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lru-cache v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m stable_deref_trait v1.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m socket2 v0.3.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m base64 v0.11.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m shlex v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m walkdir v2.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_core v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tar v0.4.26
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crossbeam-deque v0.7.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m sha2 v0.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m antidote v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-util v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tempfile v3.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rustc_version v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m parking_lot v0.7.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m itertools v0.8.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m inotify v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m percent-encoding v2.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m regex-syntax v0.6.17
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-channel v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m jobserver v0.1.21
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand v0.7.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m filetime v0.2.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m heck v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m thread_local v1.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-task v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m quote v0.3.15
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m clap v2.33.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing-attributes v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m num-integer v0.1.42
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m cfg-if v0.1.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-sink v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m foreign-types v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m error-chain v0.12.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m smallvec v1.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m structopt-derive v0.2.18
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-io v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m slab v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicase v2.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m percent-encoding v1.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m mio-uds v0.6.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m openssl-sys v0.9.54
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m serde_urlencoded v0.5.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m enum-as-inner v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m pin-project-internal v0.4.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-buf v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m idna v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m dirs v1.0.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hmac v0.7.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m multimap v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m precomputed-hash v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m smallvec v0.6.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m md5 v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m mio-extras v2.0.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ghost v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m idna v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m url v2.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hex v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m http-body v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-executor v0.1.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m build_const v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-executor v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m xml-rs v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m which v2.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-timer v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bit-vec v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro-error v0.4.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m data-encoding v2.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m jemalloc-sys v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-core v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m httparse v1.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m itoa v0.4.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m failure v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m petgraph v0.4.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-load-shed v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-buffer v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bit-vec v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m quote v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m memchr v2.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro2 v1.0.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hashbrown v0.6.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m resolv-conf v0.6.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hashbrown v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m time v0.1.42
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m quote v0.6.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hyperlocal v0.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m either v1.5.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m backtrace v0.3.43
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m typetag-impl v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m inventory-impl v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crossbeam-queue v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m h2 v0.1.26
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hyper-tls v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crossbeam-utils v0.6.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m string_cache_shared v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m mio v0.6.21
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m version_check v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-reactor v0.1.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m glob v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro2 v0.4.30
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m byteorder v1.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m autocfg v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand v0.4.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m dtoa v0.4.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m bytes v0.5.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand v0.6.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m semver v0.9.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m pin-project-lite v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-macros v0.2.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m linked_hash_set v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m matches v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m snafu-derive v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m toml v0.5.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crossbeam-channel v0.3.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m quanta v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lexical-core v0.4.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m k8s-openapi v0.5.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tracing-serde v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m sharded-slab v0.0.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-timeout v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m syn v1.0.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-limit v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m matchers v0.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-discover v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tower-retry v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m doc-comment v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-tcp v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m phf_shared v0.7.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures01 v0.1.29
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m string_cache_codegen v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-udp v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ctor v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-sync v0.1.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-process v0.2.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m new_debug_unreachable v1.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-current-thread v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m reqwest v0.9.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m want v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m hdrhistogram v6.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m headers-core v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-timer v0.2.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m tokio-fs v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m signal-hook v0.1.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m aho-corasick v0.7.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m erased-serde v0.3.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m git2 v0.10.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-segmentation v1.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m pin-utils v0.1.0-alpha.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crc32fast v1.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-normalization v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m semver-parser v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m foreign-types-shared v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro-nested v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crossbeam-utils v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_hc v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro-hack v0.5.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m linked-hash-map v0.5.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m parking_lot_core v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m opaque-debug v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m block-buffer v0.7.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m try-lock v0.2.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m same-file v1.0.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rustc-demangle v0.1.16
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m fake-simd v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rustversion v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_xorshift v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m pkg-config v0.3.17
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-xid v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m digest v0.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_isaac v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m onig_sys v69.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m signal-hook-registry v1.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-width v0.1.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m scopeguard v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m encoding_rs v0.8.22
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m strsim v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crypto-mac v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m siphasher v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-bidi v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m autocfg v0.1.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_jitter v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_chacha v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m futures-macro v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m parking_lot v0.9.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-xid v0.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m synom v0.11.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m miniz_oxide v0.3.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m unicode-xid v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro-error-attr v0.4.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lock_api v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ahash v0.2.18
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m serde-value v0.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m inotify-sys v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m phf_generator v0.7.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m cookie v0.12.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_pcg v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m arrayvec v0.4.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lazycell v1.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m crossbeam-epoch v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m fs_extra v1.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m static_assertions v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_os v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m version_check v0.9.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m backtrace-sys v0.1.32
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m quick-error v1.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m remove_dir_all v0.5.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m maybe-uninit v2.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m vec_map v0.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_chacha v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m void v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_core v0.5.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rand_core v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m textwrap v0.11.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m getrandom v0.1.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m rdkafka-sys v1.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m failure_derive v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m string v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m xattr v0.2.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m vte v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m nom v4.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m cookie_store v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m regex-automata v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m memoffset v0.5.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m syn-mid v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m generic-array v0.12.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m subtle v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m c2-chacha v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m block-padding v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m parking_lot_core v0.6.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m scopeguard v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ordered-float v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m byte-tools v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m libz-sys v1.0.25
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m adler32 v1.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m utf8parse v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m const-random v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m synstructure v0.12.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m lock_api v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m nodrop v0.1.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m arc-swap v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m num_enum v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m openssl-src v111.6.1+1.1.1d
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m typenum v1.11.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m utf8-ranges v1.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m ppv-lite86 v0.2.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m try_from v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m num_enum_derive v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m const-random-macro v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m publicsuffix v1.5.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m zstd-sys v1.4.15+zstd.1.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m proc-macro-crate v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m libgit2-sys v0.9.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m  Downloaded�[0m fixedbitset v0.1.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[36m    Blocking�[0m waiting for file lock on build directory
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m libc v0.2.66
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro2 v1.0.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-xid v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m syn v1.0.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m cfg-if v0.1.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m serde v1.0.104
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lazy_static v1.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m byteorder v1.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m log v0.4.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures v0.1.29
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m autocfg v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m semver-parser v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m autocfg v0.1.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m either v1.5.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m slab v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m pkg-config v0.3.17
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m fnv v1.0.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m maybe-uninit v2.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m memchr v2.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bitflags v1.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m scopeguard v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m itoa v0.4.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro2 v0.4.30
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-xid v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ryu v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m syn v0.15.44
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m getrandom v0.1.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m smallvec v1.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m failure_derive v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m regex-syntax v0.6.17
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m matches v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m version_check v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m typenum v1.11.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m percent-encoding v2.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m httparse v1.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_core v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m try-lock v0.2.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m openssl v0.10.27
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m foreign-types-shared v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rustc-demangle v0.1.16
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m byte-tools v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m native-tls v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m arc-swap v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m fake-simd v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m version_check v0.9.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m opaque-debug v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m openssl-probe v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ppv-lite86 v0.2.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-segmentation v1.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crc32fast v1.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m glob v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m percent-encoding v1.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m subtle v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hex v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m adler32 v1.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro-nested v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m shlex v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-core v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m md5 v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m dtoa v0.4.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-sink v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m fixedbitset v0.1.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m xml-rs v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m remove_dir_all v0.5.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rustversion v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m utf8-ranges v1.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-io v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m linked-hash-map v0.5.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m arrayvec v0.4.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m multimap v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-task v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m siphasher v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m pin-utils v0.1.0-alpha.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m mime v0.3.16
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m scopeguard v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m nodrop v0.1.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m build_const v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m stable_deref_trait v1.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ansi_term v0.11.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m string_cache_shared v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m encoding_rs v0.8.22
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m fs_extra v1.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m static_assertions v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hyper-openssl v0.7.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m quick-error v1.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m winapi v0.3.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m data-encoding v2.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-xid v0.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m doc-comment v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-width v0.1.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m pin-project-lite v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m strsim v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bytes v0.5.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m vec_map v0.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m quote v0.3.15
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m antidote v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m utf8parse v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lazycell v1.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m nix v0.16.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m same-file v1.0.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m k8s-openapi v0.5.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bit-vec v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m precomputed-hash v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bit-vec v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m db-key v0.0.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m new_debug_unreachable v1.0.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m urlencoding v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m scoped-tls v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m base64 v0.11.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m void v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m glob v0.2.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m logfmt v0.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m once_cell v1.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m seahash v3.0.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bytesize v1.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m exitcode v1.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m try_from v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crossbeam-utils v0.6.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-core v0.1.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m thread_local v1.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m sharded-slab v0.0.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m semver v0.9.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lock_api v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m num-traits v0.2.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m num-integer v0.1.42
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m indexmap v1.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crossbeam-utils v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crossbeam-epoch v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_chacha v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_pcg v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand v0.6.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hashbrown v0.6.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-normalization v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicode-bidi v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_core v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_jitter v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m foreign-types v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m error-chain v0.12.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m nom v4.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m nom v5.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-sync v0.1.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-service v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-timer v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures01 v0.1.29
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m stream-cancel v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m block-padding v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m itertools v0.8.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m heck v0.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m unicase v2.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m miniz_oxide v0.3.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m c2-chacha v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-channel v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m petgraph v0.4.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m grok v1.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lru-cache v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m linked_hash_set v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m phf_shared v0.7.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m owning_ref v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crc v1.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m synom v0.11.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m textwrap v0.11.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m vte v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m walkdir v2.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bloom v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-executor v0.1.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crossbeam-queue v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crossbeam-channel v0.3.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rustc_version v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_isaac v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_hc v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_xorshift v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-layer v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-discover v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m idna v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m idna v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lock_api v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m syn v0.11.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m strip-ansi-escapes v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-timer v0.2.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-current-thread v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m want v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-log v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m base64 v0.10.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m regex-automata v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hashbrown v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m quote v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m smallvec v0.6.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m parking_lot_core v0.6.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m parking_lot v0.9.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m memoffset v0.5.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hyper v0.12.35
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_core v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m parking_lot_core v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lexical-core v0.4.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-load-shed v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m quote v0.6.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m iovec v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m net2 v0.2.33
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m num_cpus v1.12.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m time v0.1.42
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m signal-hook-registry v1.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m dirs v1.0.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_os v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hostname v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m filetime v0.2.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m atty v0.2.14
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m socket2 v0.3.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m xattr v0.2.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m inotify-sys v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m quanta v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand v0.4.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m listenfd v0.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand v0.5.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m flate2 v1.0.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m generic-array v0.12.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m jobserver v0.1.21
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m url v2.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m url v1.7.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-timeout v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-retry v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m matchers v0.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ordered-float v1.0.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-cpupool v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m aho-corasick v0.7.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m mio v0.6.21
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m syslog v5.0.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m signal-hook v0.1.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_core v0.5.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m resolv-conf v0.6.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m derive_is_enum_variant v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m clap v2.33.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m colored v1.9.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m inotify v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tar v0.4.26
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m mime_guess v2.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-retry v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m cc v1.0.50
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m digest v0.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m block-buffer v0.7.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crypto-mac v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m cookie v0.12.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m regex v1.3.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hdrhistogram v6.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m mio-uds v0.6.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m mio-extras v2.0.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand_chacha v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m sha2 v0.8.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m sha-1 v0.8.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hmac v0.7.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m openssl-src v111.6.1+1.1.1d
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m cmake v0.1.42
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m phf_generator v0.7.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m synstructure v0.12.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m syn-mid v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m backtrace-sys v0.1.32
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m libz-sys v1.0.25
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m libgit2-sys v0.9.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m zstd-sys v1.4.15+zstd.1.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m onig_sys v69.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m jemalloc-sys v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rlua v0.17.1-alpha.0 (https://github.com/kyren/rlua#25bd7e6b)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m notify v4.0.15
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rand v0.7.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m parking_lot v0.7.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m publicsuffix v1.5.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m scan_fmt v0.2.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m openssl-sys v0.9.54
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m leveldb-sys v3.0.0 (https://github.com/timberio/leveldb-sys?branch=v3.0.0#bbdd99a6)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rdkafka-sys v1.3.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m crossbeam-deque v0.7.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m string_cache_codegen v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tempfile v3.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-threadpool v0.1.17
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m string_cache v0.7.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m serde_derive v1.0.104
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro-hack v0.5.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-attributes v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m pin-project-internal v0.4.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m inventory-impl v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ctor v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ghost v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-macros v0.2.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m typetag-impl v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m async-trait v0.1.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m derivative v1.0.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m enum-as-inner v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m structopt-derive v0.2.18
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m snafu-derive v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-macro v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m const-random-macro v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro-error v0.4.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro-error-attr v0.4.9
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio v0.2.13
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m inventory v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m pin-project v0.4.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m structopt v0.2.18
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m const-random v0.1.8
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-limit v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-buffer v0.1.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-util v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-futures v0.2.0 (https://github.com/tokio-rs/tracing?rev=65547d8809fcc726b8187db85b23c42e32ef5dce#65547d88)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-futures v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m ahash v0.2.18
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m jemallocator v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m getset v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m lru v0.4.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures-executor v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m futures v0.3.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bytes v0.4.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m serde_json v1.0.45
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m chrono v0.4.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m serde_urlencoded v0.5.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-serde v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m uuid v0.7.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m erased-serde v0.3.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m serde_urlencoded v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m serde-value v0.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hotmic v0.8.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m bstr v0.2.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m toml v0.4.10
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m toml v0.5.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m maxminddb v0.13.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-io v0.1.12
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m http v0.1.21
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m string v0.2.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-buf v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m evmap v7.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m file-source v0.1.0 (/home/mozgiii/Desktop/vector/lib/file-source)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-subscriber v0.2.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m syslog_loose v0.2.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-metrics v0.1.0 (/home/mozgiii/Desktop/vector/lib/tracing-metrics)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m typetag v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-reactor v0.1.11
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-codec v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-fs v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower-util v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m proc-macro-crate v0.1.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m leveldb v0.8.4 (https://github.com/timberio/leveldb#64265815)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-limit v0.1.0 (/home/mozgiii/Desktop/vector/lib/tracing-limit)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m codec v0.1.0 (/home/mozgiii/Desktop/vector/lib/codec)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m h2 v0.1.26
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m http-body v0.1.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m headers-core v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-tcp v0.1.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-udp v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-uds v0.2.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-signal v0.2.7
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-compat v0.1.5
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tower v0.1.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tracing-tower v0.1.0 (https://github.com/tokio-rs/tracing?rev=65547d8809fcc726b8187db85b23c42e32ef5dce#65547d88)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m headers v0.2.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m num_enum_derive v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-process v0.2.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio v0.1.22
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m backtrace v0.3.43
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m failure v0.1.6
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m snafu v0.4.4
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m which v2.0.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m prost-derive v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m trust-dns-proto v0.8.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m cookie_store v0.7.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m num_enum v0.4.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m prost-build v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_credential v0.41.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hyperlocal v0.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m warp v0.1.21 (https://github.com/timberio/warp?branch=0.1.x#017965c6)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m trust-dns-resolver v0.12.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m prost v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m prost-types v0.5.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m pulsar v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m onig v4.3.3
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m git2 v0.10.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m built v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m vector v0.9.0 (/home/mozgiii/Desktop/vector)
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m tokio-openssl v0.3.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m smpl_jwt v0.4.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m hyper-tls v0.3.2
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m reqwest v0.9.24
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m shiplift v0.6.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_s3 v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_logs v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_kinesis v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_cloudwatch v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_sts v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rusoto_firehose v0.41.0
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m goauth v0.6.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m   Compiling�[0m rdkafka v0.23.1
�[36mbuild-x86_64_1                         |�[0m �[0m�[0m�[1m�[32m    Finished�[0m dev [unoptimized + debuginfo] target(s) in 6m 15s
�[36mvector_build-x86_64_1 exited with code 0
�[0m�[1A
/home/mozgiii/Desktop/vector/scripts/docker-compose-run.sh test-kubernetes
Going to remove vector_test-kubernetes_1
Step 1/8 : FROM vector_build-x86_64:latest
 ---> a43ad5a66ec0
Step 2/8 : WORKDIR /vector
 ---> Using cache
 ---> 0d67b9303047
Step 3/8 : ADD https://github.com/kubernetes-sigs/kind/releases/download/v0.7.0/kind-linux-amd64 /usr/local/bin/kind

 ---> Using cache
 ---> 17e1181a19da
Step 4/8 : RUN chmod +x /usr/local/bin/kind
 ---> Using cache
 ---> 169b670f318c
Step 5/8 : RUN apt-get install docker.io -y
 ---> Using cache
 ---> d71f85aa6ae7
Step 6/8 : RUN apt-get install apt-utils
 ---> Using cache
 ---> 2de3a9dfce85
Step 7/8 : RUN apt-get install libssl-dev
 ---> Using cache
 ---> 1f272d88178a
Step 8/8 : RUN apt-get install pkg-config
 ---> Using cache
 ---> 7bcc2fb6cbef
Successfully built 7bcc2fb6cbef
Successfully tagged vector_test-kubernetes:latest
Attaching to vector_test-kubernetes_1
�[36mtest-kubernetes_1                      |�[0m Build & push test image
�[36mtest-kubernetes_1                      |�[0m �[0m�[0m�[1m�[32m    Finished�[0m dev [unoptimized + debuginfo] target(s) in 0.24s
�[36mtest-kubernetes_1                      |�[0m Sending build context to Docker daemon    718MB

�[36mtest-kubernetes_1                      |�[0m Step 1/3 : FROM buildpack-deps:18.04-curl
�[36mtest-kubernetes_1                      |�[0m  ---> bd0212f57c07
�[36mtest-kubernetes_1                      |�[0m Step 2/3 : COPY ./target/x86_64-unknown-linux-musl/debug/vector /usr/local/bin
�[36mtest-kubernetes_1                      |�[0m  ---> fb8f834ffe9c
�[36mtest-kubernetes_1                      |�[0m Step 3/3 : ENTRYPOINT ["/usr/local/bin/vector"]
�[36mtest-kubernetes_1                      |�[0m  ---> Running in c57f366c89bd
�[36mtest-kubernetes_1                      |�[0m Removing intermediate container c57f366c89bd
�[36mtest-kubernetes_1                      |�[0m  ---> 6ebd97d5f518
�[36mtest-kubernetes_1                      |�[0m Successfully built 6ebd97d5f518
�[36mtest-kubernetes_1                      |�[0m Successfully tagged localhost:5000/vector-test:ts
�[36mtest-kubernetes_1                      |�[0m The push refers to repository [localhost:5000/vector-test]
�[36mtest-kubernetes_1                      |�[0m 6ca571406882: Preparing
�[36mtest-kubernetes_1                      |�[0m de00e92e2ec4: Preparing
�[36mtest-kubernetes_1                      |�[0m 29088b349325: Preparing
�[36mtest-kubernetes_1                      |�[0m 16542a8fc3be: Preparing
�[36mtest-kubernetes_1                      |�[0m 6597da2e2e52: Preparing
�[36mtest-kubernetes_1                      |�[0m 977183d4e999: Preparing
�[36mtest-kubernetes_1                      |�[0m c8be1b8f4d60: Preparing
�[36mtest-kubernetes_1                      |�[0m 977183d4e999: Waiting
�[36mtest-kubernetes_1                      |�[0m c8be1b8f4d60: Waiting
�[36mtest-kubernetes_1                      |�[0m 29088b349325: Layer already exists
�[36mtest-kubernetes_1                      |�[0m de00e92e2ec4: Layer already exists
�[36mtest-kubernetes_1                      |�[0m 6597da2e2e52: Layer already exists
�[36mtest-kubernetes_1                      |�[0m 16542a8fc3be: Layer already exists
�[36mtest-kubernetes_1                      |�[0m c8be1b8f4d60: Layer already exists
�[36mtest-kubernetes_1                      |�[0m 977183d4e999: Layer already exists
�[36mtest-kubernetes_1                      |�[0m 6ca571406882: Pushed
�[36mtest-kubernetes_1                      |�[0m ts: digest: sha256:64a6b1c0ce57be73b75228b96c149174671415bea5954d64743f61539b5754c7 size: 1786
�[36mtest-kubernetes_1                      |�[0m Deleting cluster "vector_test_cluster" ...
�[36mtest-kubernetes_1                      |�[0m Testing kindest/node:v1.17.0@sha256:9512edae126da271b66b990b6fff768fbb7cd786c7d39e86bdf55906352fdf62
�[36mtest-kubernetes_1                      |�[0m Creating cluster "vector_test_cluster" ...
�[36mtest-kubernetes_1                      |�[0m  • Ensuring node image (kindest/node:v1.17.0) 🖼  ...
�[36mtest-kubernetes_1                      |�[0m  ✓ Ensuring node image (kindest/node:v1.17.0) 🖼
�[36mtest-kubernetes_1                      |�[0m  • Preparing nodes 📦   ...
�[36mtest-kubernetes_1                      |�[0m  ✓ Preparing nodes 📦 
�[36mtest-kubernetes_1                      |�[0m  • Writing configuration 📜  ...
�[36mtest-kubernetes_1                      |�[0m  ✓ Writing configuration 📜
�[36mtest-kubernetes_1                      |�[0m  • Starting control-plane 🕹️  ...
�[36mtest-kubernetes_1                      |�[0m  ✗ Starting control-plane 🕹️
�[36mtest-kubernetes_1                      |�[0m ERROR: failed to create cluster: failed to init node with kubeadm: command "docker exec --privileged vector_test_cluster-control-plane kubeadm init --ignore-preflight-errors=all --config=/kind/kubeadm.conf --skip-token-print --v=6" failed with error: exit status 1
�[36mtest-kubernetes_1                      |�[0m Deleting cluster "vector_test_cluster" ...
�[36mvector_test-kubernetes_1 exited with code 1
�[0m�[1A
Makefile:39: recipe for target 'test-kubernetes' failed

Metadata

Metadata

Assignees

Labels

domain: testsAnything related to Vector's internal tests

Type

No type

Fields

No fields configured for issues without a type.

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions