mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
e3f11ea9c0
* feat: create flowy-plugins * feat: integrated openai service with interface * feat: integrated openai api call * fix: response in api * fix: removed unused imports * fix: remove parse.rs * fix: macos version + removed print * fix: removed debugPrint + changed deployment target * fix: android project+removed gesture detector * fix: removed unused imports * chore: fix compile * chore: rever changes * chore: rever changes * chore: fix clippy warnings * chore: rename * chore: fix compile error * chore: remove dart ai --------- Co-authored-by: nathan <nathan@appflowy.io>
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"
|