Cargo.toml 830 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "flowy-document"
  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. derive_more = {version = "0.99", features = ["display"]}
  8. flowy-dispatch = { path = "../flowy-dispatch" }
  9. flowy-log = { path = "../flowy-log" }
  10. flowy-derive = { path = "../flowy-derive" }
  11. flowy-database = { path = "../flowy-database" }
  12. flowy-infra = { path = "../flowy-infra" }
  13. diesel = {version = "1.4.7", features = ["sqlite"]}
  14. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  15. protobuf = {version = "2.18.0"}
  16. unicode-segmentation = "1.7.1"
  17. lazy_static = "1.4.0"
  18. log = "0.4.14"
  19. tokio = {version = "1.6.0", features = ["sync"]}
  20. tracing = { version = "0.1", features = ["log"] }
  21. [dev-dependencies]
  22. flowy-test = { path = "../flowy-test" }