2021-07-13 06:28:01 +00:00
|
|
|
[package]
|
|
|
|
name = "flowy-workspace"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
flowy-dispatch = { path = "../flowy-dispatch" }
|
|
|
|
flowy-log = { path = "../flowy-log" }
|
|
|
|
flowy-derive = { path = "../flowy-derive" }
|
|
|
|
flowy-database = { path = "../flowy-database" }
|
|
|
|
flowy-sqlite = { path = "../flowy-sqlite" }
|
|
|
|
flowy-infra = { path = "../flowy-infra" }
|
2021-07-21 07:43:05 +00:00
|
|
|
flowy-observable = { path = "../flowy-observable" }
|
2021-09-02 06:47:39 +00:00
|
|
|
flowy-net = { path = "../flowy-net" }
|
|
|
|
|
2021-07-13 06:28:01 +00:00
|
|
|
protobuf = {version = "2.18.0"}
|
2021-07-13 09:19:39 +00:00
|
|
|
log = "0.4.14"
|
2021-07-13 06:28:01 +00:00
|
|
|
diesel = {version = "1.4.7", features = ["sqlite"]}
|
|
|
|
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
|
2021-07-18 15:56:36 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
|
|
|
pin-project = "1.0.0"
|
2021-08-30 14:44:17 +00:00
|
|
|
strum = "0.21"
|
|
|
|
strum_macros = "0.21"
|
2021-09-02 06:47:39 +00:00
|
|
|
tokio = { version = "1", features = ["rt"] }
|
2021-07-13 09:19:39 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
derive_more = {version = "0.99", features = ["display"]}
|
2021-07-14 00:07:25 +00:00
|
|
|
bincode = { version = "1.3"}
|
2021-07-14 13:12:52 +00:00
|
|
|
unicode-segmentation = "1.7.1"
|
2021-07-21 14:41:44 +00:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2021-08-20 14:00:03 +00:00
|
|
|
bytes = { version = "1.0" }
|
2021-07-14 00:07:25 +00:00
|
|
|
[dev-dependencies]
|
2021-07-20 06:03:21 +00:00
|
|
|
flowy-test = { path = "../flowy-test" }
|
2021-09-01 14:50:22 +00:00
|
|
|
serial_test = "0.5.1"
|
|
|
|
|
2021-09-04 01:00:15 +00:00
|
|
|
|
2021-09-01 14:50:22 +00:00
|
|
|
[features]
|
2021-09-04 07:12:53 +00:00
|
|
|
http_server = []
|