Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "flowy-folder2"
  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-folder = { version = "0.1.0" }
  9. appflowy-integrate = {version = "0.1.0" }
  10. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  11. flowy-notification = { path = "../flowy-notification" }
  12. parking_lot = "0.12.1"
  13. unicode-segmentation = "1.10"
  14. tracing = { version = "0.1", features = ["log"] }
  15. flowy-error = { path = "../flowy-error", features = ["adaptor_dispatch"]}
  16. lib-dispatch = { path = "../lib-dispatch" }
  17. bytes = { version = "1.4" }
  18. lib-infra = { path = "../../../shared-lib/lib-infra" }
  19. tokio = { version = "1.26", features = ["full"] }
  20. nanoid = "0.4.0"
  21. lazy_static = "1.4.0"
  22. chrono = { version = "0.4.24"}
  23. strum = "0.21"
  24. strum_macros = "0.21"
  25. protobuf = {version = "2.28.0"}
  26. uuid = { version = "1.3.3", features = ["v4"] }
  27. tokio-stream = { version = "0.1.14", features = ["sync"] }
  28. [dev-dependencies]
  29. flowy-folder2 = { path = "../flowy-folder2"}
  30. flowy-test = { path = "../flowy-test" }
  31. [build-dependencies]
  32. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  33. [features]
  34. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  35. ts = ["flowy-codegen/ts", "flowy-notification/ts"]
  36. test_helper = []