mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
[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 = "../../../shared-lib/flowy-user-infra" }
|
|
backend-service = { path = "../../../shared-lib/backend-service" }
|
|
flowy-derive = { path = "../../../shared-lib/flowy-derive" }
|
|
lib-ws = { path = "../../../shared-lib/lib-ws" }
|
|
lib-sqlite = { path = "../../../shared-lib/lib-sqlite" }
|
|
|
|
derive_more = {version = "0.99", features = ["display"]}
|
|
flowy-database = { path = "../flowy-database" }
|
|
dart-notify = { path = "../dart-notify" }
|
|
lib-dispatch = { path = "../lib-dispatch" }
|
|
lib-infra = { path = "../lib-infra" }
|
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
bytes = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = {version = "1.0"}
|
|
log = "0.4.14"
|
|
protobuf = {version = "2.18.0"}
|
|
lazy_static = "1.4.0"
|
|
diesel = {version = "1.4.8", features = ["sqlite"]}
|
|
diesel_derives = {version = "1.4.1", features = ["sqlite"]}
|
|
thread_local = "1.1.3"
|
|
thread-id = "3.3.0"
|
|
once_cell = "1.7.2"
|
|
parking_lot = "0.11"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
tokio = { version = "1", features = ["rt"] }
|
|
pin-project = "1.0.0"
|
|
futures-core = { version = "0.3", default-features = false }
|
|
r2d2 = "0.8.9"
|
|
|
|
[dev-dependencies]
|
|
flowy-test = { path = "../flowy-test" }
|
|
futures = "0.3.15"
|
|
serial_test = "0.5.1"
|
|
|
|
[features]
|
|
http_server = [] |