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

33 lines
755 B
TOML
Raw Normal View History

2021-12-12 13:48:52 +00: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 07:31:44 +00:00
lib-dispatch = { path = "../lib-dispatch" }
flowy-error = { path = "../flowy-error", features = ["adaptor_reqwest", "adaptor_server_error"] }
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
2023-03-03 12:38:31 +00:00
protobuf = {version = "2.28.0"}
2021-12-14 07:31:44 +00:00
anyhow = "1.0"
2023-01-30 03:11:19 +00:00
thiserror = "1.0"
bytes = { version = "1.4" }
strum_macros = "0.21"
tracing = { version = "0.1"}
2021-12-14 07:31:44 +00:00
[features]
http_server = []
dart = [
2022-12-01 06:56:20 +00:00
"flowy-codegen/dart",
"flowy-error/dart",
]
ts = [
"flowy-codegen/ts",
"flowy-error/ts",
]
[build-dependencies]
flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}