Skip to content

Commit

Permalink
Get Cargo building on beta
Browse files Browse the repository at this point in the history
Work in progress. Everything seems to compile except for the tar crate.

Will close rust-lang#1479 upon completion.
  • Loading branch information
callahad committed Apr 4, 2015
1 parent d71f748 commit b4979a0
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 80 deletions.
122 changes: 61 additions & 61 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@ name = "cargo"
path = "src/cargo/lib.rs"

[dependencies]
toml = "0.1.18"
semver = "0.1.16"
curl = "0.2.2"
tar = "0.2.3"
flate2 = "0.2.0"
git2 = "0.2.1"
git2-curl = "0.2.1"
glob = "0.2.2"
time = "0.1.19"
log = "0.3.0"
env_logger = "0.3"
docopt = "0.6.45"
url = "0.2.23"
rustc-serialize = "0.3.1"
term = "0.2"
regex = "0.1.18"
threadpool = "0.1.1"
libc = "0.1.2"
toml = "0.1.20"
semver = "0.1.18"
curl = "0.2.7"
tar = "0.2.9"
flate2 = "0.2.6"
git2 = "0.2.8"
git2-curl = "0.2.3"
glob = "0.2.9"
time = "0.1.24"
log = "0.3.1"
env_logger = "0.3.0"
docopt = "0.6.57"
url = "0.2.29"
rustc-serialize = "0.3.12"
term = "0.2.6"
regex = "0.1.26"
threadpool = "0.1.3"
libc = "0.1.5"
registry = { path = "src/registry" }
num_cpus = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion src/registry/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct Registry {

pub type Result<T> = result::Result<T, Error>;

#[derive(PartialEq, Copy)]
#[derive(PartialEq, Copy, Clone)]
pub enum Auth {
Authorized,
Unauthorized
Expand Down

0 comments on commit b4979a0

Please sign in to comment.