4d20ffeac4
This is a pretty gross commit, since it also includes a lot of unrelated refactoring, especially of how error messages are printed. Also adds a lint recipe that prints lines over 100 characters To test, I added a `--color=[auto|always|never]` option that defaults to auto in normal use, but can be forced to `always` for testing. In `auto` mode it defers to `atty` to figure out if the current stream is a terminal and uses color if so. Color printing is controlled by the `alternate` formatting flag. When printing an error message, using `{:#}` will print it with colors and `{}` will print it normally.
18 lines
435 B
TOML
18 lines
435 B
TOML
[package]
|
|
name = "just"
|
|
version = "0.2.16"
|
|
description = "🤖 Just a command runner"
|
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
|
license = "WTFPL/MIT/Apache-2.0"
|
|
homepage = "https://github.com/casey/just"
|
|
|
|
[dependencies]
|
|
ansi_term = "^0.9.0"
|
|
atty = "^0.2.1"
|
|
brev = "^0.1.6"
|
|
clap = "^2.0.0"
|
|
itertools = "^0.5.5"
|
|
lazy_static = "^0.2.1"
|
|
regex = "^0.1.77"
|
|
tempdir = "^0.3.5"
|