Cargo.toml 593 B

1234567891011121314151617
  1. [package]
  2. name = "logmonitor"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. klog_types = { path = "../../../kernel/crates/klog_types" }
  8. crossterm = "0.26.1"
  9. ratatui = "0.24.0"
  10. clap = { version = "4.4.7", features = ["color", "error-context", "help", "std", "suggestions", "usage", "derive"] }
  11. rand = "0.8.5"
  12. goblin = "0.7.1"
  13. simple_logger = { git = "https://git.mirrors.dragonos.org.cn/DragonOS-Community/rust-simple_logger.git", "rev" = "36ab404868" }
  14. log = "0.4.20"
  15. lazy_static = "1.4.0"