-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a3d6e4
commit 92b51b8
Showing
6 changed files
with
22 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-make" | ||
version = "0.2.12" | ||
version = "0.2.13" | ||
authors = ["Sagie Gur-Ari <[email protected]>"] | ||
description = "Rust task runner and build tool." | ||
license = "Apache-2.0" | ||
|
@@ -25,8 +25,8 @@ include = [ | |
[dependencies] | ||
clap = "^2.25.0" | ||
rand = "^0.3.15" | ||
serde = "^1.0.8" | ||
serde_derive = "^1.0.8" | ||
serde = "*" #actual value defined by toml dependency | ||
serde_derive = "^1.0.9" | ||
toml = "^0.4.2" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
[tasks.outdated] | ||
#do not break due to child outdated dependencies also used as root dependencies | ||
args = ["outdated", "--root-deps-only", "--exit-code", "0"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters