Cargo.toml 528 B

123456789101112131415161718192021
  1. [package]
  2. name = "dadk-config"
  3. version = "0.1.0"
  4. edition = "2021"
  5. authors = [
  6. "longjin <longjin@DragonOS.org>",
  7. "chikejian <chikejian@DragonOS.org>",
  8. "xuzihao <xuzihao@DragonOS.org>"
  9. ]
  10. [dependencies]
  11. anyhow = { version = "1.0.90", features = ["std", "backtrace"] }
  12. cfg-if = "1.0.0"
  13. serde = { version = "1.0.160", features = ["serde_derive"] }
  14. serde_json = "1.0.96"
  15. toml = "0.8.12"
  16. # 只有在test的情况下才会引入下列库
  17. [dev-dependencies]
  18. tempfile = "3.13.0"
  19. test_base = { path = "../crates/test_base" }