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