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

53 lines
1.5 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]
derive_more = {version = "0.99", features = ["display"]}
2021-07-08 13:23:44 +00:00
flowy-dispatch = { path = "../flowy-dispatch" }
flowy-derive = { path = "../flowy-derive" }
2021-07-09 15:31:44 +00:00
flowy-database = { path = "../flowy-database" }
flowy-sqlite = { path = "../flowy-sqlite" }
flowy-infra = { path = "../flowy-infra" }
flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
2021-09-17 11:03:46 +00:00
flowy-ws = { path = "../flowy-ws"}
flowy-dart-notify = { path = "../flowy-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"}
validator = "0.12.0"
rand = { version = "0.8", features=["std_rng"] }
unicode-segmentation = "1.7.1"
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"
fancy-regex = "0.5.0"
diesel = {version = "1.4.7", 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]
quickcheck = "0.9.2"
quickcheck_macros = "0.9.1"
fake = "~2.3.0"
2021-07-06 06:14:47 +00:00
claim = "0.4.0"
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 = []