Cargo.toml 495 B

12345678910111213141516171819202122232425
  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. protobuf = {version = "2.28.0"}
  9. bytes = { version = "1.4" }
  10. tracing = { version = "0.1"}
  11. [features]
  12. http_server = []
  13. dart = [
  14. "flowy-codegen/dart",
  15. ]
  16. ts = [
  17. "flowy-codegen/ts",
  18. ]
  19. [build-dependencies]
  20. flowy-codegen = { path = "../../../shared-lib/flowy-codegen"}