Cargo.toml 473 B

123456789101112131415161718192021
  1. [package]
  2. name = "NovaShell"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "Shell of DragonOS"
  6. authors = [ "MemoryShore <[email protected]>" ]
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. regex = "1.10.2"
  10. libc = "0.2"
  11. num-traits = "0.2"
  12. num-derive = "0.4"
  13. num_enum = "0.5.1"
  14. num_enum_derive = "0.7.1"
  15. path-clean = "1.0.1"
  16. crossterm = "0.27.0"
  17. colored = "2.1.0"
  18. which = "6.0.3"
  19. concat-idents = "1.1.5"