AppFlowy-Cloud/libs/infra/Cargo.toml
Nathan.fooo af38efe6d9
feat: sync document through http request (#1064)
* 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
2024-12-12 14:53:07 +08:00

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"]