-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
48 lines (41 loc) · 1.06 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
[package]
name = "cargo-wizard"
version = "0.2.2"
edition = "2021"
description = "Cargo subcommand for applying Cargo profile templates."
repository = "https://github.com/kobzol/cargo-wizard"
authors = ["Jakub Beránek <[email protected]>"]
keywords = [
"cargo",
"profile",
"template"
]
categories = ["development-tools::cargo-plugins"]
readme = "README.md"
license = "MIT"
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.80"
atty = "0.2.14"
cargo_metadata = "0.18.1"
clap = { version = "4.5.1", features = ["derive"] }
console = { version = "0.15.8", features = ["windows-console-colors"] }
indexmap = "2.2.5"
inquire = "0.7.0"
rustc_version = "0.4.0"
similar = { version = "2.4.0", features = ["inline"] }
thiserror = "1.0.57"
toml_edit = "0.22.6"
which = "6.0.0"
[dev-dependencies]
tempfile = "3.10.1"
insta = "1.35.1"
[target.'cfg(target_os = "linux")'.dev-dependencies]
rexpect = "0.5.0"
[profile.dev]
debug = 0