mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
21 lines
700 B
TOML
21 lines
700 B
TOML
|
[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"
|