Cargo.toml 404 B

123456789101112131415161718
  1. [package]
  2. name = "mock-anthropic-service"
  3. version.workspace = true
  4. edition.workspace = true
  5. license.workspace = true
  6. publish.workspace = true
  7. [[bin]]
  8. name = "mock-anthropic-service"
  9. path = "src/main.rs"
  10. [dependencies]
  11. api = { path = "../api" }
  12. serde_json.workspace = true
  13. tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread", "signal", "sync"] }
  14. [lints]
  15. workspace = true