2016-06-17 03:13:43 +03:00
|
|
|
[package]
|
2021-09-17 02:45:56 +03:00
|
|
|
name = "just"
|
2024-10-01 01:33:59 +03:00
|
|
|
version = "1.36.0"
|
2021-09-17 02:45:56 +03:00
|
|
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
|
|
|
autotests = false
|
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
2023-01-12 09:47:46 +03:00
|
|
|
description = "🤖 Just a command runner"
|
|
|
|
edition = "2021"
|
2022-08-02 05:42:38 +03:00
|
|
|
exclude = ["/book", "/icon.png", "/screenshot.png", "/www"]
|
2023-01-12 09:47:46 +03: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-08-08 00:58:28 +03:00
|
|
|
rust-version = "1.74"
|
2016-10-01 09:48:23 +03:00
|
|
|
|
2021-06-02 02:37:40 +03:00
|
|
|
[workspace]
|
2024-05-15 10:28:50 +03:00
|
|
|
members = [".", "crates/*"]
|
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"
|
2024-02-11 23:56:04 +03:00
|
|
|
blake3 = { version = "1.5.0", features = ["rayon", "mmap"] }
|
2021-09-17 02:45:56 +03:00
|
|
|
camino = "1.0.4"
|
2024-05-29 06:31:55 +03:00
|
|
|
chrono = "0.4.38"
|
2024-06-09 00:56:21 +03:00
|
|
|
clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
|
2024-05-15 06:29:40 +03:00
|
|
|
clap_complete = "4.0.0"
|
2024-05-15 10:28:50 +03:00
|
|
|
clap_mangen = "0.2.20"
|
2024-03-11 02:46:21 +03:00
|
|
|
ctrlc = { version = "3.1.1", features = ["termination"] }
|
2021-09-17 02:45:56 +03:00
|
|
|
derivative = "2.0.0"
|
2023-12-29 05:08:02 +03:00
|
|
|
dirs = "5.0.1"
|
2022-12-15 07:32:27 +03:00
|
|
|
dotenvy = "0.15"
|
2020-03-31 10:00:05 +03:00
|
|
|
edit-distance = "2.0.0"
|
2024-05-09 09:02:01 +03:00
|
|
|
heck = "0.5.0"
|
2021-09-17 02:45:56 +03:00
|
|
|
lexiclean = "0.0.1"
|
|
|
|
libc = "0.2.0"
|
2023-08-03 02:52:21 +03:00
|
|
|
num_cpus = "1.15.0"
|
2024-07-19 09:02:22 +03:00
|
|
|
once_cell = "1.19.0"
|
2024-05-19 03:36:34 +03:00
|
|
|
percent-encoding = "2.3.1"
|
2024-05-19 02:29:14 +03:00
|
|
|
rand = "0.8.5"
|
2024-05-09 09:02:01 +03:00
|
|
|
regex = "1.10.4"
|
2023-10-27 23:07:46 +03:00
|
|
|
semver = "1.0.20"
|
2021-11-17 11:07:48 +03:00
|
|
|
serde = { version = "1.0.130", features = ["derive", "rc"] }
|
|
|
|
serde_json = "1.0.68"
|
2022-05-05 02:18:31 +03:00
|
|
|
sha2 = "0.10"
|
2024-05-19 08:41:38 +03:00
|
|
|
shellexpand = "3.1.0"
|
2021-11-17 11:07:48 +03:00
|
|
|
similar = { version = "2.1.0", features = ["unicode"] }
|
2024-01-09 00:33:56 +03:00
|
|
|
snafu = "0.8.0"
|
2024-02-11 22:43:24 +03:00
|
|
|
strum = { version = "0.26.0", features = ["derive"] }
|
2021-09-17 02:45:56 +03:00
|
|
|
target = "2.0.0"
|
|
|
|
tempfile = "3.0.0"
|
|
|
|
typed-arena = "2.0.1"
|
2024-10-01 01:33:59 +03:00
|
|
|
unicode-width = "0.2.0"
|
2022-05-05 02:18:31 +03:00
|
|
|
uuid = { version = "1.0.0", features = ["v4"] }
|
2017-11-17 10:30:08 +03:00
|
|
|
|
2017-11-30 21:38:44 +03:00
|
|
|
[dev-dependencies]
|
2021-09-17 02:45:56 +03:00
|
|
|
executable-path = "1.0.0"
|
2021-09-29 06:04:24 +03:00
|
|
|
pretty_assertions = "1.0.0"
|
2021-09-17 02:45:56 +03:00
|
|
|
temptree = "0.2.0"
|
2024-02-11 22:43:24 +03:00
|
|
|
which = "6.0.0"
|
2019-10-18 06:04:54 +03:00
|
|
|
|
2024-07-28 01:00:19 +03:00
|
|
|
[lints.rust]
|
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
|
|
|
|
|
|
|
|
[lints.clippy]
|
|
|
|
all = { level = "deny", priority = -1 }
|
|
|
|
enum_glob_use = "allow"
|
|
|
|
needless_pass_by_value = "allow"
|
|
|
|
pedantic = { level = "deny", priority = -1 }
|
|
|
|
similar_names = "allow"
|
|
|
|
struct_excessive_bools = "allow"
|
|
|
|
struct_field_names = "allow"
|
|
|
|
too_many_arguments = "allow"
|
|
|
|
too_many_lines = "allow"
|
|
|
|
unnecessary_wraps = "allow"
|
|
|
|
wildcard_imports = "allow"
|
|
|
|
|
2023-01-28 11:24:54 +03:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "just"
|
|
|
|
test = false
|
|
|
|
|
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
|
2024-02-21 22:39:03 +03:00
|
|
|
codegen-units = 1
|
2020-09-18 03:59:46 +03:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "integration"
|
|
|
|
path = "tests/lib.rs"
|