-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
70 lines (66 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "cargo-liner"
version = "0.8.0"
edition = "2021"
rust-version = "1.81"
description = """
Cargo subcommand to install and update binary packages listed in configuration.
"""
categories = [
"command-line-utilities",
"development-tools::cargo-plugins",
"config",
]
keywords = ["cargo", "subcommand", "plugin", "install", "update"]
license = "GPL-3.0-only"
authors = ["Paul Mabileau <[email protected]>"]
repository = "https://github.com/PaulDance/cargo-liner"
homepage = "https://github.com/PaulDance/cargo-liner"
documentation = "https://docs.rs/cargo-liner"
include = [
"/Cargo.toml",
"/Cargo.lock",
"/src/**/*",
"/examples/**/*",
"/benches/**/*",
"/tests/**/*",
"/README.md",
"/CHANGELOG.md",
"/LICENSE.txt",
]
[dependencies]
human-panic = "~2.0"
clap = { version = "~4.5", features = [
"derive",
"cargo",
"wrap_help",
"color",
] }
clap_complete = "~4.5"
log = { version = "~0.4", features = ["std", "serde"] }
pretty_env_logger = "~0.5"
color-eyre = "~0.6"
tabled = { version = "~0.16", features = ["ansi"] }
serde = { version = "~1.0", features = ["derive"] }
serde_with = "~3.9"
semver = { version = "~1.0", features = ["serde"] }
url = { version = "~2.5", features = ["serde"] }
regex = "~1.10"
toml = "~0.8"
home = "~0.5"
[dev-dependencies]
indoc = "~2.0"
tempfile = "~3.12"
trycmd = "~0.15"
snapbox = "~0.6"
cargo-test-macro = "~0.3"
cargo-test-support = "~0.3"
# See https://crates.io/crates/color-eyre: debug `backtrace` is slow.
[profile.dev.package.backtrace]
opt-level = 3
[lints.clippy]
all = { level = "warn", priority = 0 }
pedantic = { level = "warn", priority = 1 }
dbg-macro = { level = "warn", priority = 2 }
str_to_string = { level = "warn", priority = 2 }
string_to_string = { level = "warn", priority = 2 }