Cargo.toml 700 B

1234567891011121314151617181920
  1. [package]
  2. name = "flowy-ai"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  8. flowy-notification = { path = "../flowy-notification" }
  9. flowy-error = { path = "../flowy-error", features = ["impl_from_serde", "impl_from_dispatch_error"] }
  10. lib-dispatch = { path = "../lib-dispatch" }
  11. lib-infra = { path = "../../../shared-lib/lib-infra" }
  12. protobuf = {version = "2.28.0"}
  13. bytes = { version = "1.4" }
  14. strum_macros = "0.21"
  15. reqwest = { version = "0.11", features = ["json"] }
  16. serde = { version = "1.0", features = ["derive"] }
  17. serde_json = "1.0"