Cargo.toml 1.6 KB

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