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" }
|
2023-03-03 12:38:31 +00:00
|
|
|
protobuf = {version = "2.28.0"}
|
2023-05-21 10:53:59 +00:00
|
|
|
bytes = { version = "1.4" }
|
|
|
|
tracing = { version = "0.1"}
|
2022-02-07 06:40:45 +00:00
|
|
|
|
2021-12-14 07:31:44 +00:00
|
|
|
[features]
|
2022-02-08 06:36:59 +00:00
|
|
|
http_server = []
|
2022-02-08 06:57:16 +00:00
|
|
|
dart = [
|
2022-12-01 06:56:20 +00:00
|
|
|
"flowy-codegen/dart",
|
2022-02-08 06:57:16 +00:00
|
|
|
]
|
2022-02-08 06:36:59 +00:00
|
|
|
|
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"}
|