Cargo.toml 1.4 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-database = { path = "../flowy-database" }
  9. flowy-error = { path = "../flowy-error", features = ["db", "http_server"] }
  10. lib-infra = { path = "../../../shared-lib/lib-infra" }
  11. dart-notify = { path = "../dart-notify" }
  12. lib-dispatch = { path = "../lib-dispatch" }
  13. tracing = { version = "0.1", features = ["log"] }
  14. bytes = "1.0"
  15. serde = { version = "1.0", features = ["derive"] }
  16. serde_json = {version = "1.0"}
  17. log = "0.4.14"
  18. protobuf = {version = "2.18.0"}
  19. lazy_static = "1.4.0"
  20. diesel = {version = "1.4.8", features = ["sqlite"]}
  21. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  22. once_cell = "1.7.2"
  23. parking_lot = "0.11"
  24. strum = "0.21"
  25. strum_macros = "0.21"
  26. tokio = { version = "1", features = ["rt"] }
  27. unicode-segmentation = "1.8"
  28. validator = "0.15"
  29. fancy-regex = "0.10.0"
  30. [dev-dependencies]
  31. flowy-test = { path = "../flowy-test" }
  32. nanoid = "0.4.0"
  33. quickcheck = "1.0.3"
  34. quickcheck_macros = "0.9.1"
  35. fake = "2.4.3"
  36. claim = "0.4.0"
  37. futures = "0.3.15"
  38. serial_test = "0.5.1"
  39. rand_core = "0.6.3"
  40. rand = "0.8.5"
  41. [features]
  42. dart = ["lib-infra/dart"]
  43. [build-dependencies]
  44. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen"] }