Cargo.toml 692 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "lib-ot"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. bytecount = "0.6.0"
  8. serde = { version = "1.0", features = ["derive"] }
  9. #protobuf = {version = "2.18.0"}
  10. #flowy-derive = { path = "../flowy-derive" }
  11. tokio = {version = "1", features = ["sync"]}
  12. dashmap = "4.0"
  13. md5 = "0.7.0"
  14. anyhow = "1.0"
  15. thiserror = "1.0"
  16. serde_json = {version = "1.0"}
  17. derive_more = {version = "0.99", features = ["display"]}
  18. log = "0.4"
  19. tracing = { version = "0.1", features = ["log"] }
  20. lazy_static = "1.4.0"
  21. strum = "0.21"
  22. strum_macros = "0.21"
  23. bytes = "1.0"
  24. [features]
  25. flowy_unit_test = []