-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 938 Bytes
/
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
[package]
name = "cargo-list"
version = "0.30.0"
edition = "2021"
description = "List and update installed crates"
repository = "https://github.com/qtfkwk/cargo-list"
license = "MIT"
readme = "README.md"
keywords = [ "cargo", "install", "list", "update", "crates" ]
categories = [ "development-tools::cargo-plugins", "command-line-utilities" ]
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.27", features = ["derive", "wrap_help"] }
clap-cargo = "0.15.2"
expanduser = "1.2.2"
indexmap = { version = "2.7.1", features = ["rayon"] }
lazy_static = "1.5.0"
rayon = "1.10.0"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
semver = { version = "1.0.25", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
spinners = "4.1.1"
sprint = "0.11.3"
veg = { version = "0.5.4", features = ["colored"] }
[target.'cfg(unix)'.dependencies]
pager = "0.16.1"