Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "dadk"
  3. authors = [
  4. "longjin <[email protected]>",
  5. "chikejian <[email protected]>",
  6. "xuzihao <[email protected]>"
  7. ]
  8. version = "0.1.11"
  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. doc = true
  18. # 这个target与上面的内容一样,
  19. # 只是为了方便在开发,测试时使用(不会跟正式版本的dadk冲突)
  20. [[bin]]
  21. name = "dadk-insiders"
  22. path = "src/main.rs"
  23. doc = true
  24. [dependencies]
  25. anyhow = { version = "1.0.90", features = ["std", "backtrace"] }
  26. clap = { version = "4.5.20", features = ["derive"] }
  27. crossbeam = "0.8.4"
  28. dadk-config = { path = "../dadk-config" }
  29. dadk-user = { path = "../dadk-user" }
  30. derive_builder = "0.20.0"
  31. env_logger = "0.11.5"
  32. humantime = "2.1.0"
  33. indicatif = "0.17.9"
  34. inferno = "0.12.0"
  35. lazy_static = "1.4.0"
  36. log = "0.4.22"
  37. rayon = "1.10.0"
  38. regex = "1.9.1"
  39. serde = { version = "1.0.160", features = ["serde_derive"] }
  40. serde_json = "1.0.96"
  41. [dev-dependencies]
  42. tempfile = "3.13.0"