Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-define = { version = "0.1.0" }
  10. appflowy-integrate = {version = "0.1.0" }
  11. flowy-folder-deps = { path = "../flowy-folder-deps" }
  12. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  13. flowy-notification = { path = "../flowy-notification" }
  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 = { path = "../lib-dispatch" }
  19. bytes = { version = "1.4" }
  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.22", 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. [dev-dependencies]
  30. flowy-folder2 = { path = "../flowy-folder2"}
  31. flowy-test = { path = "../flowy-test", default-features = false }
  32. [build-dependencies]
  33. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  34. [features]
  35. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  36. ts = ["flowy-codegen/ts", "flowy-notification/ts"]
  37. test_helper = []