2016-06-17 03:13:43 +03:00
|
|
|
[package]
|
2021-09-17 02:45:56 +03:00
|
|
|
name = "just"
|
|
|
|
version = "0.10.1"
|
2016-10-31 08:55:03 +03:00
|
|
|
description = "🤖 Just a command runner"
|
2021-09-17 02:45:56 +03:00
|
|
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
|
|
|
license = "CC0-1.0"
|
|
|
|
homepage = "https://github.com/casey/just"
|
|
|
|
repository = "https://github.com/casey/just"
|
|
|
|
readme = "crates-io-readme.md"
|
|
|
|
edition = "2018"
|
|
|
|
autotests = false
|
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
|
|
keywords = ["command-line", "task", "runner", "development", "utility"]
|
2016-10-01 09:48:23 +03:00
|
|
|
|
2021-06-02 02:37:40 +03:00
|
|
|
[workspace]
|
2021-07-04 07:16:24 +03:00
|
|
|
members = [".", "bin/ref-type"]
|
2021-06-02 02:37:40 +03:00
|
|
|
|
2016-10-01 09:48:23 +03:00
|
|
|
[dependencies]
|
2021-09-17 02:45:56 +03:00
|
|
|
ansi_term = "0.12.0"
|
|
|
|
atty = "0.2.0"
|
|
|
|
camino = "1.0.4"
|
|
|
|
derivative = "2.0.0"
|
|
|
|
dotenv = "0.15.0"
|
2020-03-31 10:00:05 +03:00
|
|
|
edit-distance = "2.0.0"
|
2021-09-17 02:45:56 +03:00
|
|
|
env_logger = "0.9.0"
|
|
|
|
lazy_static = "1.0.0"
|
|
|
|
lexiclean = "0.0.1"
|
|
|
|
libc = "0.2.0"
|
|
|
|
log = "0.4.4"
|
|
|
|
regex = "1.5.4"
|
|
|
|
snafu = "0.6.0"
|
|
|
|
strum_macros = "0.21.1"
|
|
|
|
target = "2.0.0"
|
|
|
|
tempfile = "3.0.0"
|
|
|
|
typed-arena = "2.0.1"
|
2020-03-31 10:00:05 +03:00
|
|
|
unicode-width = "0.1.0"
|
2017-11-17 10:30:08 +03:00
|
|
|
|
2021-08-05 04:03:22 +03:00
|
|
|
[dependencies.clap]
|
|
|
|
version = "2.33.0"
|
|
|
|
features = ["wrap_help"]
|
|
|
|
|
2018-08-28 02:03:52 +03:00
|
|
|
[dependencies.ctrlc]
|
2019-07-11 08:59:32 +03:00
|
|
|
version = "3.1.1"
|
2018-10-13 13:12:35 +03:00
|
|
|
features = ["termination"]
|
2018-08-28 02:03:52 +03:00
|
|
|
|
2020-10-27 04:16:42 +03:00
|
|
|
[dependencies.strum]
|
2021-06-13 01:49:27 +03:00
|
|
|
version = "0.21.0"
|
2020-10-27 04:16:42 +03:00
|
|
|
features = ["derive"]
|
|
|
|
|
2017-11-30 21:38:44 +03:00
|
|
|
[dev-dependencies]
|
2021-09-17 02:45:56 +03:00
|
|
|
cradle = "0.0.22"
|
|
|
|
executable-path = "1.0.0"
|
2021-03-25 06:14:58 +03:00
|
|
|
pretty_assertions = "0.7.0"
|
2021-09-17 02:45:56 +03:00
|
|
|
temptree = "0.2.0"
|
|
|
|
which = "4.0.0"
|
|
|
|
yaml-rust = "0.4.5"
|
2019-10-18 06:04:54 +03:00
|
|
|
|
2020-10-19 09:04:00 +03:00
|
|
|
[features]
|
|
|
|
# No features are active by default.
|
|
|
|
default = []
|
|
|
|
# The `help4help2man` feature modifies the message produced by `--help`
|
|
|
|
# so that `help2man` produces a reasonable man page.
|
|
|
|
help4help2man = []
|
|
|
|
|
2020-03-18 07:03:47 +03: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"]
|
2020-07-17 22:14:02 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2020-09-18 03:59:46 +03:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "integration"
|
|
|
|
path = "tests/lib.rs"
|