Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. collab-entity = { version = "0.1.0" }
  10. collab-integrate = { workspace = true }
  11. flowy-folder-deps = { workspace = true }
  12. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  13. flowy-notification = { workspace = true }
  14. parking_lot = "0.12.1"
  15. unicode-segmentation = "1.10"
  16. tracing = { version = "0.1", features = ["log"] }
  17. flowy-error = { path = "../flowy-error", features = ["impl_from_dispatch_error"]}
  18. lib-dispatch = { workspace = true }
  19. bytes = { version = "1.5" }
  20. lib-infra = { path = "../../../shared-lib/lib-infra" }
  21. tokio = { version = "1.26", features = ["full"] }
  22. nanoid = "0.4.0"
  23. lazy_static = "1.4.0"
  24. chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
  25. strum_macros = "0.21"
  26. protobuf = {version = "2.28.0"}
  27. uuid = { version = "1.3.3", features = ["v4"] }
  28. tokio-stream = { version = "0.1.14", features = ["sync"] }
  29. [build-dependencies]
  30. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  31. [features]
  32. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  33. ts = ["flowy-codegen/ts", "flowy-notification/ts"]
  34. test_helper = []