2016-06-16 17:13:43 -07:00
|
|
|
[package]
|
2021-09-16 16:45:56 -07:00
|
|
|
name = "just"
|
2024-07-14 14:29:13 -07:00
|
|
|
version = "1.31.0"
|
2021-09-16 16:45:56 -07:00
|
|
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
|
|
|
autotests = false
|
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
2023-01-11 22:47:46 -08:00
|
|
|
description = "🤖 Just a command runner"
|
|
|
|
edition = "2021"
|
2022-08-01 19:42:38 -07:00
|
|
|
exclude = ["/book", "/icon.png", "/screenshot.png", "/www"]
|
2023-01-11 22:47:46 -08:00
|
|
|
homepage = "https://github.com/casey/just"
|
|
|
|
keywords = ["command-line", "task", "runner", "development", "utility"]
|
|
|
|
license = "CC0-1.0"
|
|
|
|
readme = "crates-io-readme.md"
|
|
|
|
repository = "https://github.com/casey/just"
|
2024-05-18 16:12:11 -07:00
|
|
|
rust-version = "1.70"
|
2016-09-30 23:48:23 -07:00
|
|
|
|
2021-06-01 16:37:40 -07:00
|
|
|
[workspace]
|
2024-05-15 00:28:50 -07:00
|
|
|
members = [".", "crates/*"]
|
2021-06-01 16:37:40 -07:00
|
|
|
|
2016-09-30 23:48:23 -07:00
|
|
|
[dependencies]
|
2021-09-16 16:45:56 -07:00
|
|
|
ansi_term = "0.12.0"
|
2024-02-11 12:56:04 -08:00
|
|
|
blake3 = { version = "1.5.0", features = ["rayon", "mmap"] }
|
2021-09-16 16:45:56 -07:00
|
|
|
camino = "1.0.4"
|
2024-05-28 20:31:55 -07:00
|
|
|
chrono = "0.4.38"
|
2024-06-08 14:56:21 -07:00
|
|
|
clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
|
2024-05-14 20:29:40 -07:00
|
|
|
clap_complete = "4.0.0"
|
2024-05-15 00:28:50 -07:00
|
|
|
clap_mangen = "0.2.20"
|
2024-03-10 16:46:21 -07:00
|
|
|
ctrlc = { version = "3.1.1", features = ["termination"] }
|
2021-09-16 16:45:56 -07:00
|
|
|
derivative = "2.0.0"
|
2023-12-28 18:08:02 -08:00
|
|
|
dirs = "5.0.1"
|
2022-12-14 20:32:27 -08:00
|
|
|
dotenvy = "0.15"
|
2020-03-31 00:00:05 -07:00
|
|
|
edit-distance = "2.0.0"
|
2024-02-11 11:43:24 -08:00
|
|
|
env_logger = "0.11.0"
|
2024-05-08 23:02:01 -07:00
|
|
|
heck = "0.5.0"
|
2021-09-16 16:45:56 -07:00
|
|
|
lexiclean = "0.0.1"
|
|
|
|
libc = "0.2.0"
|
|
|
|
log = "0.4.4"
|
2023-08-02 16:52:21 -07:00
|
|
|
num_cpus = "1.15.0"
|
2024-05-18 17:36:34 -07:00
|
|
|
percent-encoding = "2.3.1"
|
2024-05-18 16:29:14 -07:00
|
|
|
rand = "0.8.5"
|
2024-05-08 23:02:01 -07:00
|
|
|
regex = "1.10.4"
|
2023-10-27 13:07:46 -07:00
|
|
|
semver = "1.0.20"
|
2021-11-17 00:07:48 -08:00
|
|
|
serde = { version = "1.0.130", features = ["derive", "rc"] }
|
|
|
|
serde_json = "1.0.68"
|
2022-05-04 16:18:31 -07:00
|
|
|
sha2 = "0.10"
|
2024-05-18 22:41:38 -07:00
|
|
|
shellexpand = "3.1.0"
|
2021-11-17 00:07:48 -08:00
|
|
|
similar = { version = "2.1.0", features = ["unicode"] }
|
2024-01-08 13:33:56 -08:00
|
|
|
snafu = "0.8.0"
|
2024-02-11 11:43:24 -08:00
|
|
|
strum = { version = "0.26.0", features = ["derive"] }
|
2021-09-16 16:45:56 -07:00
|
|
|
target = "2.0.0"
|
|
|
|
tempfile = "3.0.0"
|
|
|
|
typed-arena = "2.0.1"
|
2020-03-31 00:00:05 -07:00
|
|
|
unicode-width = "0.1.0"
|
2022-05-04 16:18:31 -07:00
|
|
|
uuid = { version = "1.0.0", features = ["v4"] }
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2017-11-30 10:38:44 -08:00
|
|
|
[dev-dependencies]
|
2021-09-16 16:45:56 -07:00
|
|
|
executable-path = "1.0.0"
|
2021-09-28 20:04:24 -07:00
|
|
|
pretty_assertions = "1.0.0"
|
2021-09-16 16:45:56 -07:00
|
|
|
temptree = "0.2.0"
|
2024-02-11 11:43:24 -08:00
|
|
|
which = "6.0.0"
|
2019-10-17 20:04:54 -07:00
|
|
|
|
2023-01-28 00:24:54 -08:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "just"
|
|
|
|
test = false
|
|
|
|
|
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"]
|
2020-07-17 12:14:02 -07:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2024-02-21 11:39:03 -08:00
|
|
|
codegen-units = 1
|
2020-09-17 17:59:46 -07:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "integration"
|
|
|
|
path = "tests/lib.rs"
|