Cargo.toml 676 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "flowy-virtual-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-ws = { path = "../../../shared-lib/lib-ws" }
  8. lib-infra = { path = "../../../shared-lib/lib-infra" }
  9. flowy-net = { path = "../flowy-net" }
  10. bytes = { version = "1.0" }
  11. parking_lot = "0.11"
  12. tokio = {version = "1", features = ["sync"]}
  13. tracing = { version = "0.1", features = ["log"] }
  14. # flowy-collaboration and dashmap would be optional
  15. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration"}
  16. dashmap = {version = "4.0"}
  17. [features]
  18. flowy_unit_test = []
  19. http_server = []