-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.23 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "acknowledgements-rs"
version = "1.0.1"
edition = "2021"
authors = ["a.nvlkv <[email protected]>"]
license = "CC-BY-4.0"
repository = "https://github.com/anvlkv/acknowledgements"
description = "acknowledge is a simple CLI tool to analyze dependencies of a Cargo (rust) project and produce an ACKNOWLEDMENTS.md file listing (major) contributors of your dependencies"
[[bin]]
name = "acknowledge"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.7", features = ["derive"] }
octocrab = "0.38.0"
tokio = { version = "=1.35", features = [
"rt",
"rt-multi-thread",
"net",
"macros",
"fs",
"time",
] }
strum = "0.26"
strum_macros = "0.26"
anyhow = "1.0.86"
cargo_toml = "0.20.3"
serde = "1.0.203"
crates_io_api = "0.11.0"
unfmt = "0.2.2"
unfmt_macros = "0.2.2"
handlebars = "5.1.2"
serde_json = "1.0.117"
reqwest = { version = "0.12.5", features = ["json"] }
dirs = "5.0.1"
cacache = { version = "13.0.0", default-features = false, features = [
"tokio-runtime",
"mmap",
] }
chrono = { version = "0.4.38", default-features = false, features = ["now"] }
[dev-dependencies]
insta = { version = "1.39.0", features = ["yaml"] }
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3