-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (34 loc) · 811 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "runme"
version = "0.5.0"
edition = "2021"
authors = ["sigoden <[email protected]>"]
description = "A shell-script based task runner"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/sigoden/runme"
repository = "https://github.com/sigoden/runme"
autotests = false
categories = ["command-line-utilities"]
keywords = ["command-line", "task-runner", "task-automation", "build-tool"]
[dependencies]
argc = "0.14"
anyhow = "1"
which = "4.2"
either = "1.8"
clap = { version = "4.0", features = ["string"]}
ctrlc = "3.2"
[dev-dependencies]
insta = "1.15"
assert_cmd = "2"
assert_fs = "1"
rstest = "0.15"
predicates = "2"
[target.'cfg(unix)'.dev-dependencies]
libc = "0.2"
[profile.release]
lto = true
strip = true
opt-level = "z"
[[test]]
name = "integration"
path = "tests/tests.rs"