xref: /DADK/Cargo.toml (revision f188a2a5d3659281a31cd9afda592e87e434a655)
1[package]
2name = "dadk"
3authors = ["longjin <longjin@DragonOS.org>", "chikejian <chikejian@DragonOS.org>"]
4version = "0.1.11"
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[workspace]
12members = [
13    "crates/test_base",
14]
15
16[[bin]]
17name = "dadk"
18path = "src/main.rs"
19doc = true
20
21# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
22
23[dependencies]
24chrono = { version = "=0.4.35", features = ["serde"] }
25clap = { version = "=4.2.4", features = ["derive"] }
26derive_builder = "0.20.0"
27lazy_static = "1.4.0"
28log = "0.4.17"
29regex = "1.9.1"
30reqwest = { version = "0.11", features = ["blocking", "json"] }
31serde = { version = "1.0.160", features = ["serde_derive"] }
32serde_json = "1.0.96"
33simple_logger = { version = "4.1.0", features = ["stderr"] }
34toml = "0.8.12"
35zip = "0.6"
36
37[dev-dependencies]
38test_base = { path = "crates/test_base" }
39
40