-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (40 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
48 lines (40 loc) · 1.09 KB
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
40
41
42
43
44
45
46
47
48
[package]
name = "runscript"
version = "1.0.0-beta.7"
description = "Project script manager and executor"
license = "MIT"
readme = "README.md"
categories = ["command-line-utilities", "development-tools::build-utils"]
repository = "https://github.com/TheOnlyMrCat/runscript"
authors = ["TheOnlyMrCat <skylifegame@gmail.com>"]
edition = "2021"
[profile.dev]
split-debuginfo = "unpacked"
[[bin]]
name = "run"
path = "src/main.rs"
[features]
default = ["panic-hook"]
panic-hook = ["os_info", "uuid"]
old-parser = []
[dependencies]
cfg-if = "1.0.0"
clap = { version = "4.1.7", features = ["derive"] }
exitcode = "1.1.2"
glob = "0.3.1"
indexmap = "1.9.2"
itertools = "0.10.5"
is-terminal = "0.4.4"
serde = { version = "1.0.152", features = ["derive"] }
tempfile = "3.4.0"
termcolor = "1.2.0"
toml = "0.7.2"
# [feature = "panic-hook"]
os_info = { version = "3.6.0", optional = true }
uuid = { version = "1.3.0", features = ["v4"], default-features = false, optional = true }
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[target.'cfg(unix)'.dependencies]
nix = "0.26.2"
[dev-dependencies]
trycmd = "0.14.12"