about summary refs log tree commit diff
path: root/src/librustpkg/workspace.rs
AgeCommit message (Collapse)AuthorLines
2013-05-14rustpkg: Remove #[allow(vecs_implicitly_copyable)]Alex Crichton-1/+1
2013-05-14Fix cosmetics for fail!() callsMarvin Löbel-4/+3
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-2/+2
fail!() used to require owned strings but can handle static strings now. Also, it can pass its arguments to fmt!() on its own, no need for the caller to call fmt!() itself.
2013-05-10rustpkg: Use the new `for` protocolAlex Crichton-2/+3
2013-04-24rustpkg: Preliminary work on install commandTim Chevalier-0/+34
Mostly just tests (that are ignored); install command is still stubbed out.