2016-06-16 17:13:43 -07:00
|
|
|
[package]
|
2016-11-07 22:06:33 -08:00
|
|
|
name = "just"
|
2020-03-18 09:03:21 -07:00
|
|
|
version = "0.5.10"
|
2016-10-30 22:55:03 -07:00
|
|
|
description = "🤖 Just a command runner"
|
2016-11-07 22:06:33 -08:00
|
|
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
2017-11-30 09:05:21 -08:00
|
|
|
license = "CC0-1.0"
|
2016-11-07 22:06:33 -08:00
|
|
|
homepage = "https://github.com/casey/just"
|
2019-10-13 03:05:09 -07:00
|
|
|
repository = "https://github.com/casey/just"
|
2017-10-14 23:18:46 -07:00
|
|
|
readme = "crates-io-readme.md"
|
2019-04-11 15:23:14 -07:00
|
|
|
edition = "2018"
|
2016-09-30 23:48:23 -07:00
|
|
|
|
2019-07-18 21:58:06 -07:00
|
|
|
[features]
|
2020-02-06 12:25:09 -08:00
|
|
|
default = []
|
2019-07-18 21:58:06 -07:00
|
|
|
help4help2man = []
|
2020-02-06 12:25:09 -08:00
|
|
|
summary = []
|
2019-07-18 21:58:06 -07:00
|
|
|
|
2016-09-30 23:48:23 -07:00
|
|
|
[dependencies]
|
2020-03-18 09:03:21 -07:00
|
|
|
ansi_term = "0.12.0"
|
|
|
|
atty = "0.2.0"
|
|
|
|
clap = "2.33.0"
|
|
|
|
derivative = "2.0.0"
|
|
|
|
dotenv = "0.15.0"
|
|
|
|
edit-distance = "2.0.0"
|
|
|
|
env_logger = "0.7.0"
|
|
|
|
lazy_static = "1.0.0"
|
|
|
|
libc = "0.2.0"
|
2018-08-27 16:03:52 -07:00
|
|
|
log = "0.4.4"
|
2020-03-18 09:03:21 -07:00
|
|
|
snafu = "0.6.0"
|
|
|
|
target = "1.0.0"
|
|
|
|
tempfile = "3.0.0"
|
|
|
|
unicode-width = "0.1.0"
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2018-08-27 16:03:52 -07:00
|
|
|
[dependencies.ctrlc]
|
2019-07-10 22:59:32 -07:00
|
|
|
version = "3.1.1"
|
2018-10-13 03:12:35 -07:00
|
|
|
features = ["termination"]
|
2018-08-27 16:03:52 -07:00
|
|
|
|
2017-11-30 10:38:44 -08:00
|
|
|
[dev-dependencies]
|
2019-07-10 22:59:32 -07:00
|
|
|
executable-path = "1"
|
|
|
|
pretty_assertions = "0.6"
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
which = "3"
|
2019-10-17 20:04:54 -07:00
|
|
|
|
|
|
|
# Until github.com/rust-lang/cargo/pull/7333 makes it into stable,
|
|
|
|
# this version-less dev-dependency will interfere with publishing
|
2019-10-31 20:10:18 -07:00
|
|
|
# to crates.io. In the meantime, we can publish with nighlty cargo.
|
2019-10-17 20:04:54 -07:00
|
|
|
[dev-dependencies.test-utilities]
|
|
|
|
path = "test-utilities"
|
2020-03-17 21:03:47 -07:00
|
|
|
|
|
|
|
# The public documentation is minimal and doesn't change between
|
|
|
|
# platforms, so we only build them for linux on docs.rs to save
|
|
|
|
# their build machines some cycles.
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|