-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 loc) · 1.19 KB
/
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
40
41
42
43
44
45
46
[package]
name = "run-cli"
version = "0.0.53"
description = "A CLI to help you run any command"
authors = ["Aymeric Beaumet <[email protected]> (https://aymericbeaumet.com)"]
keywords = ["cli", "command-line", "developer-tools", "task-runner", "tools"]
categories = ["command-line-utilities", "development-tools"]
license = "MIT"
repository = "https://github.com/aymericbeaumet/run"
homepage = "https://run-cli.org"
edition = "2021"
readme = "readme.md"
[[bin]]
name = "run"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.70"
async-trait = "0.1.68"
clap = { version = "4.2.2", features = ["derive", "env"] }
futures = "0.3.28"
itertools = "0.10.5"
merge = "0.1.0"
pulldown-cmark = "0.9.2"
reqwest = { version = "0.11.16", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
shell-words = "1.1.0"
textwrap = "0.16.0"
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread", "fs", "process"] }
toml = "0.7.3"
[dev-dependencies]
assert_cmd = "2.0.11"
glob = "0.3.1"
lazy_static = "1.4.0"
pretty_assertions = "1.3.0"
[profile.dev]
opt-level = 0
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3