Skip to content

Instantly share code, notes, and snippets.

View Seeker14491's full-sized avatar

Brian Bowman Seeker14491

View GitHub Profile
Seeker@Seeker-PC MSYS ~
$ cd "C:\Users\Seeker\Desktop\cargo-edit"
Seeker@Seeker-PC MSYS /c/Users/Seeker/Desktop/cargo-edit
$ cargo build --release
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading matches v0.1.2
Downloading aho-corasick v0.3.4
Downloading memchr v0.1.6
Downloading winapi-build v0.1.1
Seeker@Seeker-PC MSYS /c/Users/Seeker/Desktop
$ git clone "https://github.com/alexcrichton/curl-rust.git" --branch "update-cur l"
Cloning into 'curl-rust'...
remote: Counting objects: 3853, done.
remote: Total 3853 (delta 0), reused 0 (delta 0), pack-reused 3853
Receiving objects: 100% (3853/3853), 3.93 MiB | 623.00 KiB/s, done.
Resolving deltas: 100% (1722/1722), done.
Checking connectivity... done.
Seeker@Seeker-PC MSYS /c/Users/Seeker/Desktop
Administrator@WIN-25P08VE0STQ MSYS /c/Users/Administrator/Desktop/curl-rust
$ cargo build --release
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading regex v0.1.41
Downloading libz-sys v0.1.9
Downloading memchr v0.1.6
Downloading tempdir v0.3.4
Downloading rand v0.3.11
Downloading aho-corasick v0.3.4
Downloading url v0.2.37
Administrator@WIN-25P08VE0STQ MSYS /c/Users/Administrator/Desktop
$ git clone "https://github.com/alexcrichton/curl-rust.git" --branch "update-curl"
Cloning into 'curl-rust'...
remote: Counting objects: 3853, done.
remote: Total 3853 (delta 0), reused 0 (delta 0), pack-reused 3853
Receiving objects: 100% (3853/3853), 3.93 MiB | 4.77 MiB/s, done.
Resolving deltas: 100% (1722/1722), done.
Checking connectivity... done.
Administrator@WIN-25P08VE0STQ MSYS /c/Users/Administrator/Desktop
Administrator@WIN-25P08VE0STQ MSYS ~
$ git clone "https://github.com/alexcrichton/curl-rust.git" --branch "update-curl"
Cloning into 'curl-rust'...
remote: Counting objects: 3905, done.
remote: Total 3905 (delta 0), reused 0 (delta 0), pack-reused 3905
Receiving objects: 100% (3905/3905), 3.94 MiB | 4.85 MiB/s, done.
Resolving deltas: 100% (1754/1754), done.
Checking connectivity... done.
Administrator@WIN-25P08VE0STQ MSYS ~
C:\Users\Seekr\Desktop\cargo-edit>cargo build --release
Downloading hyper v0.7.1
Downloading num v0.1.29
Downloading cookie v0.2.2
Downloading url v0.5.2
Downloading language-tags v0.2.0
Downloading serde v0.6.7
Downloading httparse v1.1.0
Downloading unicase v1.1.0
Downloading lazy_static v0.1.15
[futures_tut]$ cargo build
Updating registry `https://github.com/rust-lang/crates.io-index`
Updating git repository `https://github.com/tokio-rs/tokio-tls`
Compiling openssl v0.8.3
Compiling bitflags v0.7.0
Compiling lazy_static v0.2.1
Compiling scoped-tls v0.1.0
Compiling void v1.0.2
Compiling log v0.3.6
Compiling bitflags v0.4.0
[futures_tut]$ cargo build
Updating git repository `https://github.com/tokio-rs/tokio-tls`
Updating git repository `https://github.com/alexcrichton/futures-rs`
Updating git repository `https://github.com/tokio-rs/tokio-core`
Updating registry `https://github.com/rust-lang/crates.io-index`
Compiling log v0.3.6
Compiling bitflags v0.7.0
Compiling bitflags v0.4.0
Compiling slab v0.3.0
Compiling openssl v0.8.3
extern crate futures;
extern crate tokio_core;
extern crate tokio_tls;
use std::net::ToSocketAddrs;
use futures::Future;
use tokio_core::reactor::Core;
use tokio_core::net::TcpStream;
use tokio_tls::ClientContext;
[futures_tut]$ cargo clean
[futures_tut]$ cargo build
Updating registry `https://github.com/rust-lang/crates.io-index`
Compiling scoped-tls v0.1.0
Compiling openssl v0.8.3
Compiling cfg-if v0.1.0
Compiling lazycell v0.4.0
Compiling bitflags v0.7.0
Compiling libc v0.2.16
Compiling log v0.3.6