Cargo.toml 684 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "DragonReach"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [[bin]]
  6. name = "DragonReach"
  7. path = "src/main.rs"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. hashbrown = "0.11"
  11. cfg-if = { version = "1.0"}
  12. [target.'cfg(target_os = "dragonos")'.dependencies]
  13. drstd = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/drstd.git", rev = "e1fbd22da2" }
  14. lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
  15. [target.'cfg(not(target_os = "dragonos"))'.dependencies]
  16. lazy_static = { version = "1.4.0" }
  17. [profile.release]
  18. panic = 'abort'
  19. [profile.dev]
  20. panic = 'abort'