]> git.proxmox.com Git - cargo.git/commit
use space, not dash, in `cargo --version` output
authorNathan Froyd <froydnj@gmail.com>
Fri, 17 Feb 2017 16:44:44 +0000 (11:44 -0500)
committerNathan Froyd <froydnj@gmail.com>
Fri, 17 Feb 2017 16:44:44 +0000 (11:44 -0500)
commit635aa46987a439483bc67c5b2ddbee55880c30b4
treecab2e692156ce52da48da68428e9fc9c930a8d5b
parentfdfdb5f393c39ef5899625b344489b6567aaaa28
use space, not dash, in `cargo --version` output

 #3604 inadvertently changed the output format of `cargo --version`:

```
froydnj@hawkeye:~/src/cargo.git$ ./target/x86_64-unknown-linux-gnu/release/cargo --version
cargo-0.17.0-dev (ae4a4d8 2017-01-27)
froydnj@hawkeye:~/src/cargo.git$ cargo --version
cargo 0.16.0-nightly (6e0c18c 2017-01-27)
```

Note the dash between cargo and the version number in the newer version.

Let's put the space back to not break things that might depend on the
`--version` output.
src/cargo/lib.rs