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-user-infra = { path = "../../../shared-lib/flowy-user-infra" }
  8. backend-service = { path = "../../../shared-lib/backend-service" }
  9. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  10. lib-sqlite = { path = "../../../shared-lib/lib-sqlite" }
  11. lib-infra = { path = "../../../shared-lib/lib-infra" }
  12. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration", optional = true}
  13. derive_more = {version = "0.99", features = ["display"]}
  14. flowy-database = { path = "../flowy-database" }
  15. flowy-net = { path = "../flowy-net" }
  16. dart-notify = { path = "../dart-notify" }
  17. lib-dispatch = { path = "../lib-dispatch" }
  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 = []