Cargo.toml 940 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "flowy-workspace"
  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. flowy-dispatch = { path = "../flowy-dispatch" }
  8. flowy-log = { path = "../flowy-log" }
  9. flowy-derive = { path = "../flowy-derive" }
  10. flowy-database = { path = "../flowy-database" }
  11. flowy-sqlite = { path = "../flowy-sqlite" }
  12. flowy-infra = { path = "../flowy-infra" }
  13. protobuf = {version = "2.18.0"}
  14. log = "0.4.14"
  15. diesel = {version = "1.4.7", features = ["sqlite"]}
  16. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  17. futures-core = { version = "0.3", default-features = false }
  18. pin-project = "1.0.0"
  19. lazy_static = "1.4.0"
  20. serde = { version = "1.0", features = ["derive"] }
  21. derive_more = {version = "0.99", features = ["display"]}
  22. bincode = { version = "1.3"}
  23. unicode-segmentation = "1.7.1"
  24. [dev-dependencies]
  25. flowy-test = { path = "../flowy-test" }