Cargo.toml 660 B

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