Cargo.toml 546 B

12345678910111213141516171819202122
  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. #drstd = {git = "https://git.mirrors.dragonos.org/DragonOS-Community/drstd.git", revision = "a4d693c682"}
  11. #lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
  12. lazy_static = {version = "1.4.0"}
  13. hashbrown = "0.11"
  14. [profile.release]
  15. panic = 'abort'
  16. [profile.dev]
  17. panic = 'abort'