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

32 lines
943 B
TOML
Raw Normal View History

2022-01-14 07:23:21 +00:00
[package]
2022-03-19 08:52:28 +00:00
name = "flowy-revision"
2022-01-14 07:23:21 +00:00
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-03-19 08:52:28 +00:00
flowy-sync = { path = "../../../shared-lib/flowy-sync" }
2022-01-14 07:23:21 +00:00
lib-ws = { path = "../../../shared-lib/lib-ws" }
lib-infra = { path = "../../../shared-lib/lib-infra" }
2022-11-01 10:59:53 +00:00
flowy-error = { path = "../flowy-error" }
2022-01-14 07:23:21 +00:00
tracing = { version = "0.1", features = ["log"] }
tokio = {version = "1", features = ["sync"]}
bytes = { version = "1.1" }
strum = "0.21"
strum_macros = "0.21"
2022-06-14 00:37:44 +00:00
dashmap = "5"
2022-01-14 07:23:21 +00:00
serde = { version = "1.0", features = ["derive"] }
futures-util = "0.3.15"
async-stream = "0.3.2"
2022-08-16 03:24:37 +00:00
serde_json = {version = "1.0"}
2022-01-14 07:23:21 +00:00
2022-11-02 02:23:54 +00:00
[dev-dependencies]
nanoid = "0.4.0"
2022-11-07 12:22:08 +00:00
flowy-revision = {path = "../flowy-revision", features = ["flowy_unit_test"]}
2022-11-02 09:15:27 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
parking_lot = "0.12.1"
2022-11-02 02:23:54 +00:00
2022-01-14 07:23:21 +00:00
[features]
2022-10-13 15:29:37 +00:00
flowy_unit_test = []