Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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-infra = { path = "../../../shared-lib/flowy-user-infra" }
  8. backend-service = { path = "../../../shared-lib/backend-service" }
  9. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration" }
  10. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  11. lib-ws = { path = "../../../shared-lib/lib-ws" }
  12. lib-sqlite = { path = "../../../shared-lib/lib-sqlite" }
  13. derive_more = {version = "0.99", features = ["display"]}
  14. flowy-database = { path = "../flowy-database" }
  15. dart-notify = { path = "../dart-notify" }
  16. lib-dispatch = { path = "../lib-dispatch" }
  17. lib-infra = { path = "../lib-infra" }
  18. tracing = { version = "0.1", features = ["log"] }
  19. bytes = "1.0"
  20. serde = { version = "1.0", features = ["derive"] }
  21. serde_json = {version = "1.0"}
  22. log = "0.4.14"
  23. protobuf = {version = "2.18.0"}
  24. lazy_static = "1.4.0"
  25. diesel = {version = "1.4.8", features = ["sqlite"]}
  26. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  27. thread_local = "1.1.3"
  28. thread-id = "3.3.0"
  29. once_cell = "1.7.2"
  30. parking_lot = "0.11"
  31. strum = "0.21"
  32. strum_macros = "0.21"
  33. tokio = { version = "1", features = ["rt"] }
  34. pin-project = "1.0.0"
  35. futures-core = { version = "0.3", default-features = false }
  36. r2d2 = "0.8.9"
  37. dashmap = "4.0"
  38. [dev-dependencies]
  39. flowy-test = { path = "../flowy-test" }
  40. futures = "0.3.15"
  41. serial_test = "0.5.1"
  42. [features]
  43. http_server = []