Cargo.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. lib-sqlite = { path = "../lib-sqlite" }
  10. flowy-sync = { path = "../flowy-sync" }
  11. flowy-error = { path = "../flowy-error", features = ["db"]}
  12. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  13. lib-ot = { path = "../../../shared-lib/lib-ot" }
  14. lib-infra = { path = "../../../shared-lib/lib-infra" }
  15. flowy-grid-data-model = { path = "../../../shared-lib/flowy-grid-data-model" }
  16. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration" }
  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. uuid = { version = "0.8", features = ["serde", "v4"] }
  27. bytes = { version = "1.0" }
  28. diesel = {version = "1.4.8", features = ["sqlite"]}
  29. dashmap = "4.0"
  30. tokio = {version = "1", features = ["sync"]}
  31. rayon = "1.5"
  32. parking_lot = "0.11"
  33. serde = { version = "1.0", features = ["derive"] }
  34. serde_json = {version = "1.0"}
  35. [dev-dependencies]
  36. flowy-test = { path = "../flowy-test" }
  37. flowy-grid = { path = "../flowy-grid", features = ["flowy_unit_test"]}
  38. [build-dependencies]
  39. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen", "proto_gen"] }
  40. [features]
  41. default = []
  42. dart = ["lib-infra/dart"]
  43. flowy_unit_test = ["flowy-sync/flowy_unit_test"]