Bump rust-crypto to v0.2.2

This commit is contained in:
Haitao Li 2014-12-22 01:54:51 +11:00
parent 696ddfbb1e
commit 0a64dbfe8b
3 changed files with 3 additions and 3 deletions

View file

@ -223,7 +223,7 @@ $(BUILDDIR)/uutils: $(SRCDIR)/uutils/uutils.rs $(BUILDDIR)/mkuutils $(RLIB_PATHS
# Dependencies
-include $(BUILDDIR)/rust-crypto.d
$(BUILDDIR)/.rust-crypto: $(BUILDDIR)/.rust-time | $(BUILDDIR)
$(RUSTC) $(RUSTCFLAGS) --extern time=$(BUILDDIR)/libtime.rlib --crate-type rlib --dep-info $(BUILDDIR)/rust-crypto.d $(BASEDIR)/deps/rust-crypto/src/rust-crypto/lib.rs --out-dir $(BUILDDIR)/
$(RUSTC) $(RUSTCFLAGS) --extern time=$(BUILDDIR)/libtime.rlib --crate-type rlib --crate-name crypto --dep-info $(BUILDDIR)/rust-crypto.d $(BASEDIR)/deps/rust-crypto/src/rust-crypto/lib.rs --out-dir $(BUILDDIR)/
@touch $@
$(BUILDDIR)/.rust-time:

2
deps/rust-crypto vendored

@ -1 +1 @@
Subproject commit b463ff97f78ea06ce9bcf0f1fafe63e5966f2499
Subproject commit baa0874a75fcb76eeb6a7e430f02aaaf4e4b2701

View file

@ -15,7 +15,7 @@
extern crate regex;
extern crate "rust-crypto" as crypto;
extern crate crypto;
extern crate getopts;
use std::io::fs::File;