123456789101112131415161718192021222324252627 |
- [package]
- name = "dadk"
- authors = ["longjin <longjin@DragonOS.org>", "chikejian <chikejian@DragonOS.org>"]
- version = "0.1.3"
- 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]
- 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 = "4.1.0"
- zip = "0.6"
|