2021-07-31 12:53:45 +00:00
|
|
|
[package]
|
2021-11-19 06:38:11 +00:00
|
|
|
name = "lib-ot"
|
2021-07-31 12:53:45 +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]
|
|
|
|
bytecount = "0.6.0"
|
2021-08-01 06:39:30 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-12-22 13:13:52 +00:00
|
|
|
#protobuf = {version = "2.18.0"}
|
|
|
|
#flowy-derive = { path = "../flowy-derive" }
|
2022-09-11 14:06:36 +00:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
2022-06-14 00:37:44 +00:00
|
|
|
dashmap = "5"
|
2021-12-07 14:32:34 +00:00
|
|
|
md5 = "0.7.0"
|
2022-01-03 04:20:06 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
2021-12-07 14:32:34 +00:00
|
|
|
|
2022-09-11 14:06:36 +00:00
|
|
|
serde_json = { version = "1.0" }
|
|
|
|
serde_repr = { version = "0.1" }
|
|
|
|
derive_more = { version = "0.99", features = ["display"] }
|
2021-08-02 10:35:25 +00:00
|
|
|
log = "0.4"
|
2021-11-03 07:37:38 +00:00
|
|
|
tracing = { version = "0.1", features = ["log"] }
|
2021-08-11 00:40:58 +00:00
|
|
|
lazy_static = "1.4.0"
|
2021-09-15 07:01:24 +00:00
|
|
|
strum = "0.21"
|
|
|
|
strum_macros = "0.21"
|
2021-09-21 08:21:35 +00:00
|
|
|
bytes = "1.0"
|
2022-08-16 08:25:52 +00:00
|
|
|
indextree = "4.4.0"
|
2021-07-31 12:53:45 +00:00
|
|
|
|
2021-09-14 08:22:44 +00:00
|
|
|
|
2021-12-08 13:51:06 +00:00
|
|
|
[features]
|
|
|
|
flowy_unit_test = []
|