Cargo.toml 648 B

1234567891011121314151617181920212223
  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. [build-dependencies]
  16. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  17. [features]
  18. dart = ["flowy-codegen/dart"]
  19. ts = ["flowy-codegen/ts"]