-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 953 Bytes
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 953 Bytes
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
[package]
name = "yag"
version = "0.3.0"
authors = ["Wang Jie <i@i8e.net>"]
edition = "2018"
license = "MIT"
description = "YAG is Yet Another Git CLI tool"
readme = "README.md"
homepage = "https://github.com/cnwangjie/yag"
repository = "https://github.com/cnwangjie/yag"
keywords = ["cli", "git"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "^1.19.2", features = [
"macros",
"rt-multi-thread",
"time",
] }
reqwest = { version = "^0.11.11", features = ["json", "gzip"] }
serde = "^1.0.115"
serde_derive = "^1.0.115"
serde_json = "^1.0.57"
futures = "^0.3.5"
git-url-parse = "^0.2.0"
anyhow = "^1.0.32"
percent-encoding = "^2.1.0"
toml = "^0.5.6"
async-trait = "^0.1.40"
clap = "^2.33.3"
log = { version = "^0.4.11", features = ["std"] }
colored = "^2"
base64 = "0.13"
open = "^3.0.1"
[dev-dependencies]
libc = "0.2"