-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (30 loc) · 826 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "release"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "api_release"
[dependencies]
# utils
thiserror = "1.0.56"
# log
log = "0.4.20"
simple_logger = "4.3.3"
# crypto
sha2 = "0.10.8"
# encode
bincode = "1.3.3"
serde = { version = "1.0.196", features = ["derive"] }
flate2 = "1.0.28"
# thread
tokio = { version = "1.37.0", features = ["io-util", "fs", "time", "sync"], optional = true }
async-recursion = { version = "1.1.1", optional = true }
[dev-dependencies]
# cmd
clap = { version = "4.4.18", features = ["derive"] }
tokio = { version = "1.37.0", features = ["io-util", "fs", "rt", "rt-multi-thread", "macros", "time"]}
[features]
async = ["tokio", "async-recursion"]
[[example]]
name = "cli"