Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "dadk"
  3. authors = ["longjin <longjin@DragonOS.org>", "chikejian <chikejian@DragonOS.org>"]
  4. version = "0.1.11"
  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. [workspace]
  11. members = [
  12. "crates/test_base",
  13. ]
  14. [[bin]]
  15. name = "dadk"
  16. path = "src/main.rs"
  17. doc = true
  18. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  19. [dependencies]
  20. chrono = { version = "=0.4.35", features = ["serde"] }
  21. clap = { version = "=4.2.4", features = ["derive"] }
  22. derive_builder = "0.20.0"
  23. lazy_static = "1.4.0"
  24. log = "0.4.17"
  25. regex = "1.9.1"
  26. reqwest = { version = "0.11", features = ["blocking", "json"] }
  27. serde = { version = "1.0.160", features = ["serde_derive"] }
  28. serde_json = "1.0.96"
  29. simple_logger = { version = "4.1.0", features = ["stderr"] }
  30. toml = "0.8.12"
  31. zip = "0.6"
  32. [dev-dependencies]
  33. test_base = { path = "crates/test_base" }