-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.47 KB
/
Copy pathCargo.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.10.2"
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.6.6", features = ["derive"] }
clap_complete = "4.6.9"
clap_complete_nushell = "4.6.1"
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.15.0"
libc = "0.2.189"
log = { version = "0.4.33", features = ["std"] }
pretty_env_logger = "0.5.0"
regex = "1.13.1"
serde = { version = "1.0.229", features = ["derive"] }
serde-inline-default = "1.0.2"
serde_json = "1.0.151"
strum = { version = "0.28.0", features = ["derive"] }
taplo = "0.14.0"
tempfile = "3.27.0"
toml = "1.1.4"
toml_edit = { version = "0.25.13", features = ["display", "serde"] }
walkdir = "2.5.0"
[dev-dependencies]
assert_cmd = "2.2.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"