xref: /DADK/Cargo.toml (revision 60f366c9cf663fab2c851abaf55f1b1f011b3bb9)
1[package]
2name = "dadk"
3authors = ["longjin <longjin@DragonOS.org>", "chikejian <chikejian@DragonOS.org>"]
4version = "0.1.10"
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"] }
26lazy_static = "1.4.0"
27log = "0.4.17"
28regex = "1.9.1"
29reqwest = { version = "0.11", features = ["blocking", "json"] }
30serde = { version = "1.0.160", features = ["serde_derive"] }
31serde_json = "1.0.96"
32simple_logger = { version = "4.1.0", features = ["stderr"] }
33toml = "0.8.12"
34zip = "0.6"
35
36[dev-dependencies]
37test_base = { path = "crates/test_base" }
38
39