-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for channels more broadly
- Loading branch information
Brendan Molloy
committed
Feb 5, 2019
1 parent
f1602b4
commit c8815cb
Showing
5 changed files
with
256 additions
and
193 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 |
---|---|---|
|
@@ -2,19 +2,22 @@ | |
name = "pahkat" | ||
version = "0.6.0" | ||
authors = ["Brendan Molloy <[email protected]>"] | ||
edition = "2018" | ||
|
||
[[bin]] | ||
name = "pahkat" | ||
path = "src/main.rs" | ||
required-features = ["binaries"] | ||
|
||
[dependencies] | ||
clap = { version = "*", optional = true } | ||
termcolor = { version = "0.3", optional = true } | ||
clap = { version = "2.32.0", optional = true } | ||
dialoguer = { version = "0.3.0", optional = true } | ||
termcolor = { version = "1.0.4", optional = true } | ||
pathdiff = { version = "0.1", optional = true } | ||
serde = "*" | ||
serde_derive = "*" | ||
serde_json = "*" | ||
url = { version = "1.7.2", optional = true} | ||
serde = "1.0.87" | ||
serde_derive = "1.0.87" | ||
serde_json = "1.0.38" | ||
|
||
[features] | ||
binaries = ["clap", "termcolor", "pathdiff"] | ||
binaries = ["clap", "termcolor", "pathdiff", "dialoguer", "url"] |
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
Oops, something went wrong.