Skip to content

Commit

Permalink
new --list-jobs launch option
Browse files Browse the repository at this point in the history
Also upgrade the notify crate
Fix ##51
  • Loading branch information
Canop committed Jul 31, 2021
1 parent 4143d87 commit 854f9cf
Show file tree
Hide file tree
Showing 13 changed files with 153 additions and 99 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### next
- move to more recent versions of some crates - Fix #51
- `bacon --list-jobs` (or `bacon -l`) lists all available jobs

<a name="v1.1.7"></a>
### v1.1.7 - 2021/07/11
- recognize doc test output - Fix #49
Expand Down
161 changes: 87 additions & 74 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bacon"
version = "1.1.7"
version = "1.1.8-dev"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/bacon"
description = "background rust compiler"
Expand All @@ -11,19 +11,19 @@ categories = ["command-line-utilities", "development-tools"]
readme = "README.md"

[dependencies]
argh = "0.1.3"
argh = "0.1.5"
anyhow = "1.0"
cargo_metadata = "0.12"
cli-log = "1.1"
cargo_metadata = "0.14"
cli-log = "2.0"
crossbeam = "0.8"
crossterm = "0.19.0"
crossterm = "0.20"
directories-next = "2.0"
minimad = "0.7.0"
notify = "5.0.0-pre.4"
lazy-regex = "2.2"
minimad = "0.8"
notify = "5.0.0-pre.11"
lazy-regex = "2.2.1"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
termimad = "0.10.0"
termimad = "0.14"
toml = "0.5"
unicode-width = "0.1.8"
vte = "0.8"
Expand Down

0 comments on commit 854f9cf

Please sign in to comment.