AppFlowy/rust-lib/flowy-user/Cargo.toml

47 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "flowy-user"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flowy-user-infra = { path = "../flowy-user-infra" }
2021-11-08 02:57:33 +00:00
flowy-backend-api = { path = "../flowy-backend-api" }
derive_more = {version = "0.99", features = ["display"]}
lib-dispatch = { path = "../lib-dispatch" }
flowy-derive = { path = "../flowy-derive" }
2021-07-09 15:31:44 +00:00
flowy-database = { path = "../flowy-database" }
lib-sqlite = { path = "../lib-sqlite" }
lib-infra = { path = "../lib-infra" }
flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
lib-ws = { path = "../lib-ws" }
2021-11-19 05:13:50 +00:00
flowy-dart-notify = { path = "../dart-notify" }
tracing = { version = "0.1", features = ["log"] }
2021-07-02 12:47:52 +00:00
bytes = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0"}
2021-06-30 15:11:27 +00:00
log = "0.4.14"
protobuf = {version = "2.18.0"}
2021-07-06 06:14:47 +00:00
lazy_static = "1.4.0"
2021-11-17 06:17:46 +00:00
diesel = {version = "1.4.8", features = ["sqlite"]}
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
2021-07-18 01:03:21 +00:00
thread_local = "1.1.3"
thread-id = "3.3.0"
once_cell = "1.7.2"
parking_lot = "0.11"
2021-08-30 14:44:17 +00:00
strum = "0.21"
strum_macros = "0.21"
tokio = { version = "1", features = ["rt"] }
2021-08-31 15:01:46 +00:00
pin-project = "1.0.0"
futures-core = { version = "0.3", default-features = false }
r2d2 = "0.8.9"
2021-07-24 10:55:13 +00:00
[dev-dependencies]
flowy-test = { path = "../flowy-test" }
2021-07-11 09:38:03 +00:00
futures = "0.3.15"
serial_test = "0.5.1"
[features]
2021-09-04 07:12:53 +00:00
http_server = []