AppFlowy-Cloud/libs/client-api-test/Cargo.toml

50 lines
1.3 KiB
TOML

[package]
name = "client-api-test"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes.workspace = true
mime = "0.3.17"
serde_json = "1.0.111"
tokio = { workspace = true, features = ["sync"] }
tokio-stream = "0.1.14"
tracing.workspace = true
collab-folder.workspace = true
collab = { workspace = true }
collab-document.workspace = true
collab-user.workspace = true
client-api = { path = "../client-api", features = ["test_util"] }
once_cell = "1.19.0"
tempfile = "3.9.0"
assert-json-diff = "2.0.2"
scraper = "0.17.1"
opener = "0.6.1"
image = "0.23.14"
database-entity.workspace = true
collab-entity.workspace = true
shared-entity.workspace = true
collab-database.workspace = true
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter", "ansi", "json"] }
uuid.workspace = true
lazy_static = "1.4.0"
dotenvy = "0.15.7"
reqwest.workspace = true
gotrue.workspace = true
client-websocket.workspace = true
futures = "0.3.30"
anyhow.workspace = true
serde = { version = "1.0.199", features = ["derive"] }
hex = "0.4.3"
async-trait.workspace = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features = ["console"] }
[features]
collab-sync = ["client-api/collab-sync"]
ai-test-enabled = []