Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 = "../flowy-user-infra" }
  8. flowy-backend-api = { path = "../flowy-backend-api" }
  9. derive_more = {version = "0.99", features = ["display"]}
  10. flowy-dispatch = { path = "../flowy-dispatch" }
  11. flowy-derive = { path = "../flowy-derive" }
  12. flowy-database = { path = "../flowy-database" }
  13. flowy-sqlite = { path = "../flowy-sqlite" }
  14. flowy-infra = { path = "../flowy-infra" }
  15. flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
  16. flowy-ws = { path = "../flowy-ws"}
  17. flowy-dart-notify = { path = "../flowy-dart-notify" }
  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.7", 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. [dev-dependencies]
  38. flowy-test = { path = "../flowy-test" }
  39. futures = "0.3.15"
  40. serial_test = "0.5.1"
  41. [features]
  42. http_server = []