Cargo.toml 571 B

123456789101112131415161718192021
  1. [package]
  2. name = "NovaShell"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "Shell of DragonOS"
  6. authors = [ "MemoryShore <1353318529@qq.com>" ]
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. dragonos-dsc = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/dragonos-dsc.git", rev = "7c654bcccc" }
  10. lazy_static = "1.4.0"
  11. regex = "1.10.2"
  12. libc = "0.2"
  13. num-traits = "0.2"
  14. num-derive = "0.4"
  15. num_enum = "0.5.1"
  16. num_enum_derive = "0.7.1"
  17. path-clean = "1.0.1"
  18. crossterm = "0.27.0"
  19. colored = "2.1.0"