Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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"] }
  9. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  10. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration"}
  11. backend-service = { path = "../../../shared-lib/backend-service" }
  12. flowy-core-data-model = { path = "../../../shared-lib/flowy-core-data-model" }
  13. flowy-user-data-model = { path = "../../../shared-lib/flowy-user-data-model"}
  14. flowy-core = { path = "../flowy-core" }
  15. flowy-user = { path = "../flowy-user" }
  16. flowy-document = { path = "../flowy-document" }
  17. lazy_static = "1.4.0"
  18. lib-infra = { path = "../../../shared-lib/lib-infra" }
  19. protobuf = {version = "2.18.0"}
  20. lib-ws = { path = "../../../shared-lib/lib-ws" }
  21. bytes = { version = "1.0" }
  22. anyhow = "1.0"
  23. tokio = {version = "1", features = ["sync"]}
  24. parking_lot = "0.11"
  25. strum = "0.21"
  26. strum_macros = "0.21"
  27. tracing = { version = "0.1", features = ["log"] }
  28. dashmap = {version = "4.0"}
  29. async-stream = "0.3.2"
  30. futures-util = "0.3.15"
  31. [features]
  32. http_server = []