AppFlowy/frontend/rust-lib/flowy-error/Cargo.toml

30 lines
1018 B
TOML
Raw Normal View History

2021-12-14 07:31:44 +00:00
[package]
name = "flowy-error"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
2021-12-14 10:04:51 +00:00
error-code = { path = "../../../shared-lib/error-code" }
2021-12-14 07:31:44 +00:00
lib-dispatch = { path = "../lib-dispatch" }
protobuf = {version = "2.20.0"}
2021-12-14 10:04:51 +00:00
bytes = "1.0"
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration", optional = true}
lib-ot = { path = "../../../shared-lib/lib-ot", optional = true}
serde_json = {version = "1.0", optional = true}
http-response = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", optional = true}
2021-12-14 10:04:51 +00:00
flowy-database = { path = "../flowy-database", optional = true}
r2d2 = { version = "0.8", optional = true}
2021-12-20 06:26:26 +00:00
lib-sqlite = { path = "../lib-sqlite", optional = true }
2021-12-14 10:04:51 +00:00
[features]
collaboration = ["flowy-collaboration"]
ot = ["lib-ot"]
serde = ["serde_json"]
http_server = ["http-response"]
2021-12-14 10:04:51 +00:00
db = ["flowy-database", "lib-sqlite", "r2d2"]