2023-09-17 09:14:34 +00:00
|
|
|
[package]
|
|
|
|
name = "collab-integrate"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2024-01-22 05:34:15 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2023-09-17 09:14:34 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-05-06 03:30:13 +00:00
|
|
|
collab = { workspace = true }
|
|
|
|
collab-plugins = { workspace = true }
|
|
|
|
collab-entity = { workspace = true }
|
2024-08-18 03:16:42 +00:00
|
|
|
collab-document = { workspace = true }
|
|
|
|
collab-folder = { workspace = true }
|
|
|
|
collab-user = { workspace = true }
|
|
|
|
collab-database = { workspace = true }
|
2023-11-12 13:18:27 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
async-trait.workspace = true
|
2024-04-12 08:21:41 +00:00
|
|
|
tokio = { workspace = true, features = ["sync"] }
|
2023-12-30 23:29:40 +00:00
|
|
|
lib-infra = { workspace = true }
|
2024-03-23 01:18:47 +00:00
|
|
|
futures = "0.3"
|
2024-08-18 03:16:42 +00:00
|
|
|
arc-swap = "1.7"
|
2023-09-17 09:14:34 +00:00
|
|
|
|
|
|
|
[features]
|
2024-04-12 08:21:41 +00:00
|
|
|
default = []
|