Cargo.toml 703 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "flowy-date"
  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. lib-dispatch = { path = "../lib-dispatch" }
  8. flowy-error = { path = "../flowy-error" }
  9. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  10. protobuf = { version = "2.28.0" }
  11. bytes = { version = "1.4" }
  12. strum_macros = "0.21"
  13. tracing = { version = "0.1" }
  14. date_time_parser = { version = "0.2.0" }
  15. chrono = { version = "0.4.26" }
  16. fancy-regex = { version = "0.11.0" }
  17. [features]
  18. dart = ["flowy-codegen/dart"]
  19. ts = ["flowy-codegen/ts"]
  20. [build-dependencies]
  21. flowy-codegen = { path = "../../../shared-lib/flowy-codegen" }