Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-user-data-model = { path = "../../../shared-lib/flowy-user-data-model" }
  8. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  9. flowy-database = { path = "../flowy-database" }
  10. flowy-error = { path = "../flowy-error", features = ["db", "http_server"] }
  11. lib-infra = { path = "../../../shared-lib/lib-infra" }
  12. dart-notify = { path = "../dart-notify" }
  13. lib-dispatch = { path = "../lib-dispatch" }
  14. tracing = { version = "0.1", features = ["log"] }
  15. bytes = "1.0"
  16. serde = { version = "1.0", features = ["derive"] }
  17. serde_json = {version = "1.0"}
  18. log = "0.4.14"
  19. protobuf = {version = "2.18.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.7.2"
  24. parking_lot = "0.11"
  25. strum = "0.21"
  26. strum_macros = "0.21"
  27. tokio = { version = "1", features = ["rt"] }
  28. [dev-dependencies]
  29. flowy-test = { path = "../flowy-test" }
  30. futures = "0.3.15"
  31. nanoid = "0.4.0"
  32. [features]
  33. dart = ["lib-infra/dart"]
  34. [build-dependencies]
  35. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen"] }