-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
43 lines (39 loc) · 1.04 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
[package]
name = "dantalian"
version = "0.4.6"
authors = ["Nanozuki Crows <[email protected]>"]
edition = "2024"
description = "A nfo file generator for your anime. Source from https://bangumi.tv/."
license = "GPL-3.0-or-later"
repository = "https://github.com/nanozuki/dantalian/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
vendored = ["reqwest/native-tls-vendored"]
[dependencies]
clap = { version = "3.1.18", features = [
"derive",
"cargo",
"unicode",
"wrap_help",
] }
serde = { version = "1.0.137", features = ["derive", "rc"] }
serde_json = "1.0.81"
serde_repr = "0.1.16"
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.57"
tinytemplate = "1.2.1"
walkdir = "2.3.2"
regex = "1.5.5"
toml = "0.5.9"
log = "0.4.17"
once_cell = "1.11.0"
colored = "2.0.0"
[build-dependencies]
clap = { version = "3.1.18", features = [
"derive",
"cargo",
"unicode",
"wrap_help",
] }
clap_complete = "3.1.4"