mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 11:34:42 -04:00
* chore: query embedding * chore: create embeddings * chore: apply update to editing collab * refactor: web-update * chore: calculate missing update the sv is not none * chore: add test * chore: fix audit * chore: commit sqlx * chore: fix client api * test: add * chore: clippy * chore: fix collab drop when save
22 lines
585 B
TOML
22 lines
585 B
TOML
[package]
|
|
name = "infra"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
reqwest = { workspace = true, optional = true }
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
bytes = { workspace = true }
|
|
tokio = { workspace = true, optional = true }
|
|
pin-project.workspace = true
|
|
futures = "0.3.30"
|
|
validator = { workspace = true, features = ["validator_derive", "derive"] }
|
|
|
|
[features]
|
|
file_util = ["tokio/fs"]
|
|
request_util = ["reqwest"]
|