Cargo.toml 475 B

1234567891011121314151617181920
  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. plugins = { path = "../plugins" }
  11. regex = "1"
  12. serde = { version = "1", features = ["derive"] }
  13. serde_json.workspace = true
  14. telemetry = { path = "../telemetry" }
  15. tokio = { version = "1", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] }
  16. walkdir = "2"
  17. [lints]
  18. workspace = true