Skip to content

Commit 44c0d7b

Browse files
committed
Auto merge of #2297 - alexcrichton:update, r=alexcrichton
Just a routine for niche bug fixes, linkage errors, perf improvements, etc. Closes #2295
2 parents f052d99 + dd34296 commit 44c0d7b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+168
-167
lines changed

Cargo.lock

Lines changed: 68 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "src/cargo/lib.rs"
1919
[dependencies]
2020
advapi32-sys = "0.1"
2121
crates-io = { path = "src/crates-io", version = "0.1" }
22-
crossbeam = "0.1"
22+
crossbeam = "0.2"
2323
curl = "0.2"
2424
docopt = "0.6"
2525
env_logger = "0.3"
@@ -28,16 +28,16 @@ flate2 = "0.2"
2828
git2 = "0.3"
2929
git2-curl = "0.3"
3030
glob = "0.2"
31-
kernel32-sys = "0.1"
31+
kernel32-sys = "0.2"
3232
libc = "0.2"
3333
libgit2-sys = "0.3"
3434
log = "0.3"
3535
num_cpus = "0.2"
3636
regex = "0.1"
3737
rustc-serialize = "0.3"
3838
semver = "0.2.0"
39-
tar = "0.3"
40-
term = "0.2"
39+
tar = "0.4"
40+
term = "0.4"
4141
time = "0.1"
4242
toml = "0.1"
4343
url = "0.2"

src/bin/bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use cargo::util::{CliResult, CliError, Human, Config};
33
use cargo::util::important_paths::{find_root_manifest_for_wd};
44

55
#[derive(RustcDecodable)]
6-
struct Options {
6+
pub struct Options {
77
flag_no_run: bool,
88
flag_package: Vec<String>,
99
flag_jobs: Option<u32>,

src/bin/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use cargo::util::important_paths::{find_root_manifest_for_wd};
66
use cargo::util::{CliResult, Config};
77

88
#[derive(RustcDecodable)]
9-
struct Options {
9+
pub struct Options {
1010
flag_package: Vec<String>,
1111
flag_jobs: Option<u32>,
1212
flag_features: Vec<String>,

0 commit comments

Comments
 (0)