Cargo.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = "flowy-net"
  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. lib-dispatch = { path = "../lib-dispatch" }
  8. flowy-error = { path = "../flowy-error", features = ["collaboration", "http_server"] }
  9. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  10. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration"}
  11. flowy-folder-data-model = { path = "../../../shared-lib/flowy-folder-data-model"}
  12. flowy-user-data-model = { path = "../../../shared-lib/flowy-user-data-model"}
  13. flowy-folder = { path = "../flowy-folder" }
  14. flowy-user = { path = "../flowy-user" }
  15. flowy-document = { path = "../flowy-document" }
  16. lazy_static = "1.4.0"
  17. lib-infra = { path = "../../../shared-lib/lib-infra" }
  18. protobuf = {version = "2.18.0"}
  19. lib-ws = { path = "../../../shared-lib/lib-ws" }
  20. bytes = { version = "1.0" }
  21. anyhow = "1.0"
  22. tokio = {version = "1", features = ["sync"]}
  23. parking_lot = "0.11"
  24. strum = "0.21"
  25. strum_macros = "0.21"
  26. tracing = { version = "0.1", features = ["log"] }
  27. dashmap = {version = "4.0"}
  28. async-stream = "0.3.2"
  29. futures-util = "0.3.15"
  30. http-flowy = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", features = ["with_reqwest"] }
  31. serde-aux = "1.0.1"
  32. reqwest = "0.11"
  33. hyper = "0.14"
  34. config = { version = "0.10.1", default-features = false, features = ["yaml"] }
  35. log = "0.4.14"
  36. serde = { version = "1.0", features = ["derive"] }
  37. serde_json = "1.0"
  38. [features]
  39. http_server = []
  40. dart = [
  41. "lib-infra/dart",
  42. "flowy-user/dart",
  43. "flowy-collaboration/dart",
  44. "flowy-error/dart",
  45. "flowy-user-data-model/dart",
  46. "flowy-folder-data-model/dart"
  47. ]
  48. [build-dependencies]
  49. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["protobuf_file_gen"] }