Cargo.toml 1.2 KB

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