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" }
|
2022-02-07 06:40:45 +00:00
|
|
|
flowy-error = { path = "../flowy-error", features = ["collaboration", "http_server"] }
|
2021-12-12 13:48:52 +00:00
|
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
2022-03-19 08:52:28 +00:00
|
|
|
flowy-sync = { path = "../../../shared-lib/flowy-sync"}
|
2022-02-08 06:57:16 +00:00
|
|
|
flowy-folder-data-model = { path = "../../../shared-lib/flowy-folder-data-model"}
|
2022-01-27 12:39:54 +00:00
|
|
|
flowy-folder = { path = "../flowy-folder" }
|
2022-01-13 02:53:30 +00:00
|
|
|
flowy-user = { path = "../flowy-user" }
|
2022-10-13 15:29:37 +00:00
|
|
|
flowy-document = { path = "../flowy-document" }
|
2022-01-10 15:45:59 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-12-14 07:31:44 +00:00
|
|
|
lib-infra = { path = "../../../shared-lib/lib-infra" }
|
2021-12-13 05:55:44 +00:00
|
|
|
protobuf = {version = "2.18.0"}
|
2021-12-26 11:10:37 +00:00
|
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
2021-12-14 07:31:44 +00:00
|
|
|
bytes = { version = "1.0" }
|
|
|
|
anyhow = "1.0"
|
|
|
|
tokio = {version = "1", features = ["sync"]}
|
|
|
|
parking_lot = "0.11"
|
|
|
|
strum = "0.21"
|
|
|
|
strum_macros = "0.21"
|
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2022-06-14 00:37:44 +00:00
|
|
|
dashmap = "5"
|
2022-01-13 02:53:30 +00:00
|
|
|
async-stream = "0.3.2"
|
|
|
|
futures-util = "0.3.15"
|
2022-02-07 06:40:45 +00:00
|
|
|
http-flowy = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", features = ["with_reqwest"] }
|
|
|
|
serde-aux = "1.0.1"
|
|
|
|
reqwest = "0.11"
|
|
|
|
hyper = "0.14"
|
|
|
|
config = { version = "0.10.1", default-features = false, features = ["yaml"] }
|
|
|
|
log = "0.4.14"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-04-11 07:27:03 +00:00
|
|
|
nanoid = "0.4.0"
|
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 = [
|
|
|
|
"lib-infra/dart",
|
|
|
|
"flowy-user/dart",
|
2022-03-19 08:52:28 +00:00
|
|
|
"flowy-sync/dart",
|
2022-02-08 06:57:16 +00:00
|
|
|
"flowy-error/dart",
|
|
|
|
"flowy-folder-data-model/dart"
|
|
|
|
]
|
2022-02-08 06:36:59 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-02-17 12:10:29 +00:00
|
|
|
lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen"] }
|