2021-06-28 14:56:15 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-sdk"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-19 06:38:11 +00:00
|
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
2021-11-19 07:04:56 +00:00
|
|
|
lib-log = { path = "../lib-log" }
|
2021-06-30 15:11:27 +00:00
|
|
|
flowy-user = { path = "../flowy-user" }
|
2021-12-06 06:41:09 +00:00
|
|
|
flowy-core = { path = "../flowy-core", default-features = false }
|
2021-07-13 15:08:20 +00:00
|
|
|
flowy-database = { path = "../flowy-database" }
|
2021-07-31 02:50:56 +00:00
|
|
|
flowy-document = { path = "../flowy-document" }
|
2021-11-20 02:52:39 +00:00
|
|
|
lib-infra = { path = "../lib-infra" }
|
2021-07-03 06:14:10 +00:00
|
|
|
tracing = { version = "0.1" }
|
2021-06-30 15:11:27 +00:00
|
|
|
log = "0.4.14"
|
2021-07-18 15:56:36 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
2021-08-18 08:02:47 +00:00
|
|
|
color-eyre = { version = "0.5", default-features = false }
|
2021-08-20 14:00:03 +00:00
|
|
|
bytes = "1.0"
|
2021-09-17 11:03:46 +00:00
|
|
|
tokio = { version = "1", features = ["rt"] }
|
2021-09-20 07:38:55 +00:00
|
|
|
parking_lot = "0.11"
|
2021-09-16 15:07:15 +00:00
|
|
|
|
2021-11-20 02:52:39 +00:00
|
|
|
|
2021-12-11 05:47:16 +00:00
|
|
|
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration" }
|
2021-11-20 02:52:39 +00:00
|
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
|
|
|
backend-service = { path = "../../../shared-lib/backend-service" }
|
|
|
|
|
|
|
|
|
2021-06-30 15:11:27 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
bincode = { version = "1.3"}
|
|
|
|
protobuf = {version = "2.24.1"}
|
|
|
|
claim = "0.5.0"
|
|
|
|
tokio = { version = "1", features = ["full"]}
|
2021-09-05 05:50:23 +00:00
|
|
|
futures-util = "0.3.15"
|
|
|
|
|
|
|
|
[features]
|
2021-12-06 06:41:09 +00:00
|
|
|
http_server = ["flowy-user/http_server", "flowy-core/http_server", "flowy-document/http_server"]
|
2021-11-19 07:04:56 +00:00
|
|
|
use_bunyan = ["lib-log/use_bunyan"]
|