AppFlowy/shared-lib/lib-ot/Cargo.toml

33 lines
692 B
TOML
Raw Normal View History

2021-07-31 15:53:45 +03:00
[package]
name = "lib-ot"
2021-07-31 15:53:45 +03:00
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytecount = "0.6.0"
2021-08-01 09:39:30 +03:00
serde = { version = "1.0", features = ["derive"] }
2021-12-22 16:13:52 +03:00
#protobuf = {version = "2.18.0"}
#flowy-derive = { path = "../flowy-derive" }
2021-12-07 17:32:34 +03:00
tokio = {version = "1", features = ["sync"]}
dashmap = "4.0"
md5 = "0.7.0"
2022-01-03 07:20:06 +03:00
anyhow = "1.0"
thiserror = "1.0"
2021-12-07 17:32:34 +03:00
2021-08-01 09:39:30 +03:00
serde_json = {version = "1.0"}
derive_more = {version = "0.99", features = ["display"]}
log = "0.4"
2021-11-03 10:37:38 +03:00
tracing = { version = "0.1", features = ["log"] }
2021-08-11 03:40:58 +03:00
lazy_static = "1.4.0"
2021-09-15 10:01:24 +03:00
strum = "0.21"
strum_macros = "0.21"
2021-09-21 11:21:35 +03:00
bytes = "1.0"
2021-07-31 15:53:45 +03:00
2021-09-14 11:22:44 +03:00
2021-12-08 16:51:06 +03:00
[features]
flowy_unit_test = []
2021-11-12 16:44:26 +03:00