Cargo.toml 447 B

1234567891011121314151617
  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. runtime = { path = "../runtime" }
  10. reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls"] }
  11. serde = { version = "1", features = ["derive"] }
  12. serde_json = "1"
  13. tokio = { version = "1", features = ["rt-multi-thread"] }
  14. [lints]
  15. workspace = true