forked from ripytide/metapac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.22 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
[package]
name = "metapac"
description = "multi-backend declarative package manager"
version = "0.5.0"
edition = "2024"
license = "GPL-3.0-or-later"
repository = "https://github.com/ripytide/metapac"
readme = "README.md"
keywords = ["package-manager", "linux", "declarative", "cli"]
categories = ["command-line-utilities"]
authors = ["James Forster <james.forsterer@gmail.com>", "Md Isfarul Haque <md-isfarul-haque@proton.me"]
[package.metadata.release]
allow-branch = ["main"]
[lints.rustdoc]
broken_intra_doc_links = "allow"
[dependencies]
color-eyre = "0.6.5"
clap = { version = "4.5.47", features = ["derive"] }
regex = { version = "1.11.2", default-features = false, features = ["std"] }
libc = "0.2.175"
log = { version = "0.4.27", features = ["std"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
toml = "0.9.5"
derive_more = { version = "2.0.1", features = ["full"] }
itertools = "0.14.0"
dirs = "6.0.0"
home = "0.5.11"
pretty_env_logger = "0.5.0"
dialoguer = "0.12.0"
serde-inline-default = "1.0.0"
hostname = "0.4.1"
walkdir = "2.5.0"
toml_edit = "0.23.4"
tempfile = "3.21.0"
strum = {version = "0.27.2", features = ["derive"]}
indoc = "2.0.6"
[dev-dependencies]
assert_cmd = "2.0.17"
markdown = "1.0.0"