-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 801 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
[package]
name = "tgm"
version = "0.10.0"
edition = "2021"
authors = ["linux_china <libing.chen@gmail.com>"]
description = "CLI to manage template repositories"
keywords = ["template", "generator"]
categories = ["command-line-utilities"]
documentation = "https://github.com/linux-china/tgm"
readme = "README.md"
homepage = "https://github.com/linux-china/tgm"
repository = "https://github.com/linux-china/tgm"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
colored = "2"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["blocking", "json"] }
clap = "4"
clap_complete = "4"
chrono = "0.4"
regex = "1"