summary refs log tree commit diff
path: root/src/librustpkg/usage.rs
AgeCommit message (Collapse)AuthorLines
2013-09-19Fix usage for rustpkg initSteve Klabnik-2/+3
When I took out the ability to make a new project by name, I forgot to update the usage to reflect the changes.
2013-09-17Implementing 'rustpkg init'.Steve Klabnik-0/+7
This will initialize a new workspace.
2013-09-10rustpkg: Pass command-line arguments to rustcTim Chevalier-4/+29
rustpkg now accepts most of rustc's command-line arguments and passes them along to rustc when building or installing. A few rarely-used arguments aren't implemented yet. rustpkg doesn't support flags that don't make sense with rustpkg (for example, --bin and --lib, which get inferred from crate file names). Closes #8522
2013-07-24rustpkg: Clean up usage messages for installTim Chevalier-10/+7
2013-07-18rustpkg: Make rustpkg commands work without a package IDTim Chevalier-3/+4
`rustpkg build`, if executed in a package source directory inside a workspace, will now build that package. By "inside a workspace" I mean that the parent directory has to be called `src`, and rustpkg will create a `build` directory in .. if there isn't already one. Same goes for `rustpkg install` and `rustpkg clean`. For the time being, `rustpkg build` (etc.) will still error out if you run it inside a directory whose parent isn't called `src`. I'm not sure whether or not it's desirable to have it do something in a non-workspace directory.
2013-07-13rustpkg: Implement `uninstall` and `list` commandsTim Chevalier-1/+7
2013-06-29Great renaming: propagate throughout the rest of the codebaseCorey Richardson-1/+1
2013-05-21Remove unnecessary allocations flagged by lint from rustpkgSeo Sanghyeon-10/+10
2013-02-15rustpkg: Add info command for probing a pkg.rs and expose work_dir/src_dir ↵Zack Corr-1/+10
in librustpkg
2013-02-15rustpkg: Clean up formatting issuesZack Corr-5/+5
2013-02-15rustpkg: Add do command and get cmd listeners working correctlyZack Corr-0/+7
2013-02-15rustpkg: Add preliminary imperative API supportZack Corr-0/+10
2013-02-15rustpkg: Finish all commands and declarative logicZack Corr-17/+12
2013-02-15rustpkg: Finish declarative compiling and fetching via git or curl (no ↵Zack Corr-1/+1
workcache or dependency resolution yet)
2013-02-15rustpkg: More preliminary workZack Corr-0/+100