1234567891011121314151617181920 |
- [package]
- name = "flowy-ai"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- flowy-derive = { path = "../../../shared-lib/flowy-derive" }
- flowy-notification = { path = "../flowy-notification" }
- flowy-error = { path = "../flowy-error", features = ["impl_from_serde", "impl_from_dispatch_error"] }
- lib-dispatch = { path = "../lib-dispatch" }
- lib-infra = { path = "../../../shared-lib/lib-infra" }
- protobuf = {version = "2.28.0"}
- bytes = { version = "1.4" }
- strum_macros = "0.21"
- reqwest = { version = "0.11", features = ["json"] }
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0"
|