Cargo.toml 755 B

1234567891011121314151617181920212223242526272829303132
  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 = ["adaptor_reqwest", "adaptor_server_error"] }
  9. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  10. protobuf = {version = "2.28.0"}
  11. anyhow = "1.0"
  12. thiserror = "1.0"
  13. bytes = { version = "1.4" }
  14. strum_macros = "0.21"
  15. tracing = { version = "0.1"}
  16. [features]
  17. http_server = []
  18. dart = [
  19. "flowy-codegen/dart",
  20. "flowy-error/dart",
  21. ]
  22. ts = [
  23. "flowy-codegen/ts",
  24. "flowy-error/ts",
  25. ]
  26. [build-dependencies]
  27. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}