Cargo.toml 381 B

123456789101112131415161718
  1. [package]
  2. name = "runtime"
  3. version.workspace = true
  4. edition.workspace = true
  5. license.workspace = true
  6. publish.workspace = true
  7. [dependencies]
  8. sha2 = "0.10"
  9. glob = "0.3"
  10. regex = "1"
  11. serde = { version = "1", features = ["derive"] }
  12. serde_json = "1"
  13. tokio = { version = "1", features = ["macros", "process", "rt", "rt-multi-thread", "time"] }
  14. walkdir = "2"
  15. [lints]
  16. workspace = true