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-01-07 09:37:11 +00:00
|
|
|
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration"}
|
2022-01-27 12:39:54 +00:00
|
|
|
flowy-folder-data-model = { path = "../../../shared-lib/flowy-folder-data-model" }
|
2022-01-10 15:45:59 +00:00
|
|
|
flowy-user-data-model = { path = "../../../shared-lib/flowy-user-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" }
|
|
|
|
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-01-07 09:37:11 +00:00
|
|
|
dashmap = {version = "4.0"}
|
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"
|
|
|
|
|
2021-12-14 07:31:44 +00:00
|
|
|
[features]
|
2021-12-15 08:28:18 +00:00
|
|
|
http_server = []
|