-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
56 lines (51 loc) · 1.47 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
49
50
51
52
53
54
55
56
[package]
name = "metapac"
version = "0.9.4"
edition = "2024"
description = "multi-backend declarative package manager"
readme = "README.md"
repository = "https://github.com/ripytide/metapac"
license = "GPL-3.0-or-later"
keywords = ["cli", "declarative", "linux", "package-manager"]
categories = ["command-line-utilities"]
[package.metadata.release]
allow-branch = ["main"]
[dependencies]
clap = { version = "4.5.56", features = ["derive"] }
clap_complete = "4.5.65"
clap_complete_nushell = "4.5.10"
color-eyre = "0.6.5"
derive_more = { version = "2.1.1", features = ["full"] }
dialoguer = "0.12.0"
dirs = "6.0.0"
home = "0.5.12"
hostname = "0.4.2"
indoc = "2.0.7"
itertools = "0.14.0"
libc = "0.2.180"
log = { version = "0.4.29", features = ["std"] }
pretty_env_logger = "0.5.0"
regex = "1.12.2"
serde = { version = "1.0.228", features = ["derive"] }
serde-inline-default = "1.0.1"
serde_json = "1.0.149"
strum = { version = "0.27.2", features = ["derive"] }
taplo = "0.14.0"
tempfile = "3.24.0"
toml = "0.9.11"
toml_edit = { version = "0.24.0", features = ["display", "serde"] }
walkdir = "2.5.0"
[dev-dependencies]
assert_cmd = "2.1.2"
markdown = "1.0.0"
[lints.clippy]
as_conversions = "warn"
missing_errors_doc = { level = "allow", priority = 1 }
must_use_candidate = { level = "allow", priority = 1 }
pedantic = "warn"
redundant_pub_crate = "warn"
unnecessary_debug_formatting = { level = "allow", priority = 1 }
use_debug = "warn"
use_self = "warn"
[lints.rustdoc]
broken_intra_doc_links = "allow"