Cargo.toml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [package]
  2. name = "flowy-grid"
  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. dart-notify = { path = "../dart-notify" }
  9. flowy-revision = { path = "../flowy-revision" }
  10. flowy-error = { path = "../flowy-error", features = ["db"]}
  11. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  12. lib-ot = { path = "../../../shared-lib/lib-ot" }
  13. lib-infra = { path = "../../../shared-lib/lib-infra" }
  14. grid-rev-model = { path = "../../../shared-lib/grid-rev-model" }
  15. flowy-sync = { path = "../../../shared-lib/flowy-sync" }
  16. flowy-http-model = { path = "../../../shared-lib/flowy-http-model" }
  17. flowy-database = { path = "../flowy-database" }
  18. strum = "0.21"
  19. strum_macros = "0.21"
  20. tracing = { version = "0.1", features = ["log"] }
  21. protobuf = {version = "2.18.0"}
  22. rust_decimal = "1.8.1"
  23. rusty-money = {version = "0.4.0", features = ["iso"]}
  24. lazy_static = "1.4.0"
  25. chrono = "0.4.19"
  26. nanoid = "0.4.0"
  27. bytes = { version = "1.0" }
  28. diesel = {version = "1.4.8", features = ["sqlite"]}
  29. dashmap = "5"
  30. tokio = {version = "1", features = ["sync"]}
  31. rayon = "1.5.2"
  32. serde = { version = "1.0", features = ["derive"] }
  33. serde_json = {version = "1.0"}
  34. serde_repr = "0.1"
  35. indexmap = {version = "1.9.1", features = ["serde"]}
  36. fancy-regex = "0.10.0"
  37. regex = "1.5.6"
  38. url = { version = "2"}
  39. futures = "0.3.15"
  40. atomic_refcell = "0.1.8"
  41. crossbeam-utils = "0.8.7"
  42. [dev-dependencies]
  43. flowy-test = { path = "../flowy-test" }
  44. flowy-grid = { path = "../flowy-grid", features = ["flowy_unit_test"]}
  45. [build-dependencies]
  46. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["proto_gen"] }
  47. [features]
  48. default = []
  49. dart = ["lib-infra/dart"]
  50. flowy_unit_test = ["flowy-revision/flowy_unit_test"]