Cargo.toml 804 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dragon_reach"
  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", revision = "8b1e314e01"}
  14. dragonos-dsc = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/dragonos-dsc.git", rev = "aa61cb0109" }
  15. lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
  16. [target.'cfg(not(target_os = "dragonos"))'.dependencies]
  17. lazy_static = { version = "1.4.0" }
  18. [profile.release]
  19. panic = 'abort'
  20. [profile.dev]
  21. panic = 'abort'