Cargo.toml 430 B

12345678910111213141516171819
  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. telemetry = { path = "../telemetry" }
  14. tokio = { version = "1", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] }
  15. walkdir = "2"
  16. [lints]
  17. workspace = true