Cargo.toml 898 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dadk"
  3. authors = ["longjin <longjin@DragonOS.org>", "chikejian <chikejian@DragonOS.org>"]
  4. version = "0.1.10"
  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. chrono = { version = "=0.4.35", features = ["serde"] }
  17. clap = { version = "=4.2.4", features = ["derive"] }
  18. lazy_static = "1.4.0"
  19. log = "0.4.17"
  20. regex = "1.9.1"
  21. reqwest = { version = "0.11", features = ["blocking", "json"] }
  22. serde = { version = "1.0.160", features = ["serde_derive"] }
  23. serde_json = "1.0.96"
  24. simple_logger = { version = "4.1.0", features = ["stderr"] }
  25. toml = "0.8.12"
  26. zip = "0.6"