Cargo.toml 692 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "flowy-config"
  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. flowy-sqlite = { path = "../flowy-sqlite" }
  8. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  9. lib-dispatch = { path = "../lib-dispatch" }
  10. protobuf = {version = "2.28.0"}
  11. bytes = { version = "1.4" }
  12. flowy-error = { path = "../flowy-error" }
  13. strum_macros = "0.21"
  14. appflowy-integrate = {version = "0.1.0" }
  15. flowy-server = { path = "../flowy-server" }
  16. [build-dependencies]
  17. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  18. [features]
  19. dart = ["flowy-codegen/dart"]
  20. ts = ["flowy-codegen/ts"]