Cargo.toml 492 B

123456789101112131415161718
  1. [package]
  2. name = "tools"
  3. version.workspace = true
  4. edition.workspace = true
  5. license.workspace = true
  6. publish.workspace = true
  7. [dependencies]
  8. api = { path = "../api" }
  9. plugins = { path = "../plugins" }
  10. runtime = { path = "../runtime" }
  11. reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
  12. serde = { version = "1", features = ["derive"] }
  13. serde_json.workspace = true
  14. tokio = { version = "1", features = ["rt-multi-thread"] }
  15. [lints]
  16. workspace = true