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