Cargo.toml 360 B

12345678910111213141516171819
  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 = {path = "/home/heyicong/DrogonOS-work/dragonos-rs-std"}
  11. [profile.release]
  12. panic = 'abort'
  13. [profile.dev]
  14. panic = 'abort'