Cargo.toml 778 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", "rc"] }
  9. #flowy-revision = { path = "../../frontend/rust-lib/flowy-revision" }
  10. #protobuf = {version = "2.18.0"}
  11. tokio = { version = "1", features = ["sync"] }
  12. dashmap = "5"
  13. md5 = "0.7.0"
  14. anyhow = "1.0"
  15. thiserror = "1.0"
  16. serde_json = { version = "1.0" }
  17. serde_repr = { version = "0.1" }
  18. derive_more = { version = "0.99", features = ["display"] }
  19. log = "0.4"
  20. tracing = { version = "0.1", features = ["log"] }
  21. lazy_static = "1.4.0"
  22. strum = "0.21"
  23. strum_macros = "0.21"
  24. bytes = "1.0"
  25. indextree = "4.4.0"
  26. [features]
  27. flowy_unit_test = []