Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "dadk"
  3. authors = [
  4. "longjin <[email protected]>",
  5. "chikejian <[email protected]>",
  6. "xuzihao <[email protected]>"
  7. ]
  8. version = "0.2.0"
  9. edition = "2021"
  10. description = "DragonOS Application Development Kit\nDragonOS应用开发工具"
  11. license = "GPL-2.0-only"
  12. repository = "https://github.com/DragonOS-Community/DADK.git"
  13. readme = "README.md"
  14. [[bin]]
  15. name = "dadk"
  16. path = "src/main.rs"
  17. # 这个target与上面的内容一样,
  18. # 只是为了方便在开发,测试时使用(不会跟正式版本的dadk冲突)
  19. [[bin]]
  20. name = "dadk-insiders"
  21. path = "src/main.rs"
  22. required-features = ["insiders"]
  23. [features]
  24. insiders = []
  25. [dependencies]
  26. anyhow = { version = "1.0.90", features = ["std", "backtrace"] }
  27. clap = { version = "4.5.20", features = ["derive"] }
  28. crossbeam = "0.8.4"
  29. dadk-config = { version = "0.2.0", path = "../dadk-config" }
  30. dadk-user = { version = "0.2.0", path = "../dadk-user" }
  31. derive_builder = "0.20.0"
  32. env_logger = "0.11.5"
  33. humantime = "2.1.0"
  34. indicatif = "0.17.9"
  35. inferno = "0.12.0"
  36. lazy_static = "1.4.0"
  37. log = "0.4.22"
  38. rayon = "1.10.0"
  39. regex = "1.9.1"
  40. serde = { version = "1.0.160", features = ["serde_derive"] }
  41. serde_json = "1.0.96"
  42. [dev-dependencies]
  43. tempfile = "3.13.0"