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]
|
2023-05-17 01:49:39 +00:00
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
2023-03-03 12:38:31 +00:00
|
|
|
protobuf = {version = "2.28.0"}
|
|
|
|
bytes = "1.4"
|
2022-12-28 13:49:38 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
2021-12-14 10:04:51 +00:00
|
|
|
|
2023-09-17 09:14:34 +00:00
|
|
|
lib-dispatch = { workspace = true, optional = true }
|
2021-12-14 10:04:51 +00:00
|
|
|
serde_json = {version = "1.0", optional = true}
|
2023-01-30 03:11:19 +00:00
|
|
|
serde_repr = { version = "0.1" }
|
|
|
|
serde = "1.0"
|
2023-08-23 05:58:56 +00:00
|
|
|
reqwest = { version = "0.11.14", optional = true, features = ["native-tls-vendored"] }
|
2023-09-17 09:14:34 +00:00
|
|
|
flowy-sqlite = { workspace = true, optional = true}
|
2021-12-14 10:04:51 +00:00
|
|
|
r2d2 = { version = "0.8", optional = true}
|
2023-09-01 14:27:29 +00:00
|
|
|
url = { version = "2.2", optional = true }
|
2023-04-28 06:08:53 +00:00
|
|
|
collab-database = { version = "0.1.0", optional = true }
|
2023-05-16 06:58:24 +00:00
|
|
|
collab-document = { version = "0.1.0", optional = true }
|
2023-07-29 01:46:24 +00:00
|
|
|
tokio-postgres = { version = "0.7.8", optional = true }
|
|
|
|
tokio = { version = "1.0", optional = true }
|
2023-09-17 09:14:34 +00:00
|
|
|
client-api = { version = "0.1.0", optional = true }
|
2021-12-14 10:04:51 +00:00
|
|
|
|
|
|
|
[features]
|
2023-07-29 01:46:24 +00:00
|
|
|
impl_from_dispatch_error = ["lib-dispatch"]
|
|
|
|
impl_from_serde = ["serde_json"]
|
|
|
|
impl_from_reqwest = ["reqwest"]
|
|
|
|
impl_from_sqlite = ["flowy-sqlite", "r2d2"]
|
|
|
|
impl_from_collab = ["collab-database", "collab-document", "impl_from_reqwest"]
|
|
|
|
impl_from_postgres = ["tokio-postgres"]
|
|
|
|
impl_from_tokio= ["tokio"]
|
2023-09-01 14:27:29 +00:00
|
|
|
impl_from_url= ["url"]
|
2023-09-17 09:14:34 +00:00
|
|
|
impl_from_appflowy_cloud = ["client-api"]
|
2022-12-30 03:16:47 +00:00
|
|
|
dart = ["flowy-codegen/dart"]
|
2023-01-17 08:27:17 +00:00
|
|
|
ts = ["flowy-codegen/ts"]
|
2022-02-08 06:36:59 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-05-17 01:49:39 +00:00
|
|
|
flowy-codegen = { path = "../../../shared-lib/flowy-codegen", features = ["proto_gen"]}
|