Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "flowy-document2"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. collab = { version = "0.1.0" }
  8. collab-persistence = { version = "0.1.0" }
  9. collab-document = { version = "0.1.0" }
  10. flowy-derive = { path = "../flowy-derive" }
  11. flowy-notification = { path = "../flowy-notification" }
  12. flowy-error = { path = "../flowy-error", features = ["adaptor_sync", "adaptor_ot", "adaptor_serde", "adaptor_database", "adaptor_dispatch"] }
  13. lib-dispatch = { path = "../lib-dispatch" }
  14. protobuf = {version = "2.28.0"}
  15. bytes = { version = "1.4" }
  16. nanoid = "0.4.0"
  17. parking_lot = "0.12.1"
  18. strum = "0.21"
  19. strum_macros = "0.21"
  20. serde = { version = "1.0", features = ["derive"] }
  21. serde_json = {version = "1.0"}
  22. tracing = { version = "0.1", features = ["log"] }
  23. [build-dependencies]
  24. flowy-codegen = { path = "../flowy-codegen"}
  25. [features]
  26. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  27. ts = ["flowy-codegen/ts", "flowy-notification/ts"]