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

52 lines
1.6 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]
2021-11-20 02:52:39 +00:00
flowy-user-infra = { path = "../../../shared-lib/flowy-user-infra" }
backend-service = { path = "../../../shared-lib/backend-service" }
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
2021-11-27 13:59:20 +00:00
lib-sqlite = { path = "../../../shared-lib/lib-sqlite" }
2021-12-13 05:55:44 +00:00
lib-infra = { path = "../../../shared-lib/lib-infra" }
flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration", optional = true}
2021-11-20 02:52:39 +00:00
derive_more = {version = "0.99", features = ["display"]}
2021-07-09 15:31:44 +00:00
flowy-database = { path = "../flowy-database" }
2021-12-12 13:48:52 +00:00
flowy-net = { path = "../flowy-net" }
2021-11-19 07:00:51 +00:00
dart-notify = { path = "../dart-notify" }
2021-11-20 02:52:39 +00:00
lib-dispatch = { path = "../lib-dispatch" }
2021-12-14 10:04:51 +00:00
flowy-error = { path = "../flowy-error", features = ["db", "backend"] }
2021-12-13 05:55:44 +00:00
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-12-10 14:18:44 +00:00
dashmap = "4.0"
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-12-14 07:31:44 +00:00
http_server = []