Cargo.toml 787 B

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