Cargo.toml 965 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. dadk-config = { path = "../dadk-config" }
  28. dadk-user = { path = "../dadk-user" }
  29. derive_builder = "0.20.0"
  30. env_logger = "0.11.5"
  31. log = "0.4.22"
  32. regex = "1.9.1"
  33. [dev-dependencies]
  34. tempfile = "3.13.0"