-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 1.18 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
[package]
name = "trust-list"
version = "0.1.6"
edition = "2024"
license = "MIT"
description = "Command line tool for generating a dependency information table in markdown."
keywords = ["tool", "dependencies", "trust"]
categories = ["command-line-interface"]
repository = "https://github.com/lhalf/trust-list"
exclude = [".gitignore", "justfile", "/.github", "/tests"]
[dependencies]
clap = { version = "4.5.51", default-features = false, features = ["derive", "std", "help", "usage"] }
anyhow = { version = "1.0.100", default-features = false }
itertools = { version = "0.14.0", default-features = false, features = ["use_std"] }
reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "charset", "default-tls"] }
serde_json = { version = "1.0.145", default-features = false, features = ["std"] }
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
chrono = { version = "0.4.42", default-features = false, features = ["serde", "std"] }
field_names = { version = "0.2.0", default-features = false }
pbr = { version = "1.1.1", default-features = false }
[dev-dependencies]
autospy = { version = "1.4.0", default-features = false, features = ["test"] }