2021-12-12 21:48:52 +08:00
|
|
|
[package]
|
|
|
|
name = "flowy-net"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-14 15:31:44 +08:00
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
2023-05-17 09:49:39 +08:00
|
|
|
flowy-error = { path = "../flowy-error", features = ["adaptor_reqwest", "adaptor_server_error"] }
|
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
2023-03-03 20:38:31 +08:00
|
|
|
protobuf = {version = "2.28.0"}
|
2021-12-14 15:31:44 +08:00
|
|
|
anyhow = "1.0"
|
2023-01-30 11:11:19 +08:00
|
|
|
thiserror = "1.0"
|
2023-05-21 18:53:59 +08:00
|
|
|
bytes = { version = "1.4" }
|
|
|
|
strum_macros = "0.21"
|
|
|
|
tracing = { version = "0.1"}
|
2022-02-07 14:40:45 +08:00
|
|
|
|
2021-12-14 15:31:44 +08:00
|
|
|
[features]
|
2022-02-08 14:36:59 +08:00
|
|
|
http_server = []
|
2022-02-08 14:57:16 +08:00
|
|
|
dart = [
|
2022-12-01 14:56:20 +08:00
|
|
|
"flowy-codegen/dart",
|
2022-02-08 14:57:16 +08:00
|
|
|
"flowy-error/dart",
|
|
|
|
]
|
2022-02-08 14:36:59 +08:00
|
|
|
|
2023-01-17 16:27:17 +08:00
|
|
|
ts = [
|
|
|
|
"flowy-codegen/ts",
|
|
|
|
"flowy-error/ts",
|
|
|
|
]
|
|
|
|
|
2022-02-08 14:36:59 +08:00
|
|
|
[build-dependencies]
|
2023-05-17 09:49:39 +08:00
|
|
|
flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
|