Cargo.toml 596 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. # workspace
  8. flowy-sqlite = { workspace = true }
  9. lib-dispatch = { workspace = true }
  10. flowy-error = { workspace = true }
  11. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  12. protobuf = {version = "2.28.0"}
  13. bytes = { version = "1.5" }
  14. strum_macros = "0.21"
  15. [build-dependencies]
  16. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  17. [features]
  18. dart = ["flowy-codegen/dart"]
  19. ts = ["flowy-codegen/ts"]