xref: /DADK/Cargo.toml (revision 2ebfffe739b563f7e291fe76d498ec66d164f83e)
1[package]
2name = "dadk"
3authors = ["longjin <longjin@DragonOS.org>", "chikejian <chikejian@DragonOS.org>"]
4version = "0.1.3"
5edition = "2021"
6description = "DragonOS Application Development Kit\nDragonOS应用开发工具"
7license = "GPL-2.0-only"
8repository = "https://github.com/DragonOS-Community/DADK.git"
9readme = "README.md"
10
11[[bin]]
12name = "dadk"
13path = "src/main.rs"
14doc = true
15
16# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
17
18[dependencies]
19clap = { version = "4.2.4", features = ["derive"] }
20lazy_static = "1.4.0"
21log = "0.4.17"
22regex = "1.9.1"
23reqwest = { version = "0.11", features = ["blocking", "json"] }
24serde = { version = "1.0.160", features = ["serde_derive"] }
25serde_json = "1.0.96"
26simple_logger = "4.1.0"
27zip = "0.6"