mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
e1c68c1b72
* chore: load plugin * chore: sidecar * chore: fix test * chore: clippy * chore: save chat config * chore: arc plugin * chore: add plugins * chore: clippy * chore: test streaming * chore: config chat * chore: stream message * chore: response with local ai * chore: fix compile * chore: config ui * chore: fix load plugin * chore: add docs * chore: update docs * chore: disable local ai * chore: fix compile * chore: clippy
23 lines
544 B
TOML
23 lines
544 B
TOML
[package]
|
|
name = "flowy-sidecar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
once_cell = "1.19.0"
|
|
thiserror = "1.0"
|
|
serde_json = "1.0.117"
|
|
tracing.workspace = true
|
|
crossbeam-utils = "0.8.20"
|
|
log = "0.4.21"
|
|
parking_lot.workspace = true
|
|
tokio-stream = "0.1.15"
|
|
lib-infra.workspace = true
|
|
|
|
[features]
|
|
verbose = [] |