Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829
  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. lazy_static = "1.4.0"
  15. lib-infra = { path = "../../../shared-lib/lib-infra" }
  16. protobuf = {version = "2.18.0"}
  17. lib-ws = { path = "../../../shared-lib/lib-ws" }
  18. bytes = { version = "1.0" }
  19. anyhow = "1.0"
  20. tokio = {version = "1", features = ["sync"]}
  21. parking_lot = "0.11"
  22. strum = "0.21"
  23. strum_macros = "0.21"
  24. tracing = { version = "0.1", features = ["log"] }
  25. dashmap = {version = "4.0"}
  26. [features]
  27. http_server = []