Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "flowy-user"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  8. flowy-sqlite = { path = "../flowy-sqlite", optional = true }
  9. flowy-error = { path = "../flowy-error", features = ["adaptor_database", "adaptor_dispatch"] }
  10. lib-infra = { path = "../../../shared-lib/lib-infra" }
  11. flowy-notification = { path = "../flowy-notification" }
  12. lib-dispatch = { path = "../lib-dispatch" }
  13. appflowy-integrate = { version = "0.1.0" }
  14. tracing = { version = "0.1", features = ["log"] }
  15. bytes = "1.4"
  16. serde = { version = "1.0", features = ["derive"] }
  17. serde_json = {version = "1.0"}
  18. log = "0.4.17"
  19. protobuf = {version = "2.28.0"}
  20. lazy_static = "1.4.0"
  21. diesel = {version = "1.4.8", features = ["sqlite"]}
  22. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  23. once_cell = "1.17.1"
  24. parking_lot = "0.12.1"
  25. strum = "0.21"
  26. strum_macros = "0.21"
  27. tokio = { version = "1.26", features = ["rt"] }
  28. validator = "0.16.0"
  29. unicode-segmentation = "1.10"
  30. fancy-regex = "0.11.0"
  31. [dev-dependencies]
  32. flowy-test = { path = "../flowy-test" }
  33. nanoid = "0.4.0"
  34. fake = "2.0.0"
  35. rand = "0.8.4"
  36. quickcheck = "1.0.3"
  37. rand_core = "0.6.2"
  38. quickcheck_macros = "1.0"
  39. [features]
  40. default = ["rev-sqlite"]
  41. rev-sqlite = ["flowy-sqlite"]
  42. dart = ["flowy-codegen/dart", "flowy-notification/dart"]
  43. ts = ["flowy-codegen/ts", "flowy-notification/ts"]
  44. [build-dependencies]
  45. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}