Commit 9ce60ec
Currently, the documented `cargo-run` in README no longer works, as now
there are two binaries:
```console
$ cargo run
error: `cargo run` could not determine which binary to run. Use the `--bin` option t
o specify a binary, or the `default-run` manifest key.
available binaries: tokio-console, xtask
```
This branch declares the `tokio-console` binary as the [`default-run`]
value in the `Cargo.toml`, so it is now run by default by `cargo run`.
Alternatively, we can just update the README line with `cargo run --bin
tokio-console`
[`default-run`]:
(https://doc.rust-lang.org/cargo/reference/manifest.html#the-default-run-field)
1 parent 652ac34 commit 9ce60ec
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
0 commit comments