Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "flowy-document2"
  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-document = { 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. flowy-error = { path = "../flowy-error", features = ["adaptor_serde", "adaptor_database", "adaptor_dispatch", "collab"] }
  13. lib-dispatch = { path = "../lib-dispatch" }
  14. lib-infra = { path = "../../../shared-lib/lib-infra" }
  15. protobuf = {version = "2.28.0"}
  16. bytes = { version = "1.4" }
  17. nanoid = "0.4.0"
  18. parking_lot = "0.12.1"
  19. strum = "0.21"
  20. strum_macros = "0.21"
  21. serde = { version = "1.0", features = ["derive"] }
  22. serde_json = {version = "1.0"}
  23. tracing = { version = "0.1", features = ["log"] }
  24. tokio = { version = "1.26", features = ["full"] }
  25. anyhow = "1.0"
  26. indexmap = {version = "1.9.2", features = ["serde"]}
  27. uuid = { version = "1.3.3", features = ["v4"] }
  28. futures = "0.3.26"
  29. tokio-stream = { version = "0.1.14", features = ["sync"] }
  30. [dev-dependencies]
  31. tempfile = "3.4.0"
  32. tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
  33. [build-dependencies]
  34. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}
  35. [features]
  36. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  37. ts = ["flowy-codegen/ts", "flowy-notification/ts"]