forked from DragonOS-Community/DADK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 898 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
[package]
name = "dadk"
authors = ["longjin <[email protected]>", "chikejian <[email protected]>"]
version = "0.1.10"
edition = "2021"
description = "DragonOS Application Development Kit\nDragonOS应用开发工具"
license = "GPL-2.0-only"
repository = "https://github.com/DragonOS-Community/DADK.git"
readme = "README.md"
[[bin]]
name = "dadk"
path = "src/main.rs"
doc = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "=0.4.35", features = ["serde"] }
clap = { version = "=4.2.4", features = ["derive"] }
lazy_static = "1.4.0"
log = "0.4.17"
regex = "1.9.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0.160", features = ["serde_derive"] }
serde_json = "1.0.96"
simple_logger = { version = "4.1.0", features = ["stderr"] }
toml = "0.8.12"
zip = "0.6"