Cargo.toml 651 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "flowy-core-data-model"
  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-derive = { path = "../flowy-derive" }
  8. protobuf = {version = "2.18.0"}
  9. bytes = "1.0"
  10. unicode-segmentation = "1.8"
  11. strum = "0.21"
  12. strum_macros = "0.21"
  13. derive_more = {version = "0.99", features = ["display"]}
  14. log = "0.4.14"
  15. flowy-collaboration = { path = "../flowy-collaboration" }
  16. uuid = { version = "0.8", features = ["serde", "v4"] }
  17. chrono = { version = "0.4" }
  18. error-code = { path = "../error-code" }
  19. [features]
  20. default = []
  21. backend = []
  22. frontend = []