Cargo.toml 574 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "flowy-notification"
  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. lazy_static = { version = "1.4.0" }
  8. protobuf = { version = "2.28.0" }
  9. tracing = { version = "0.1", features = ["log"] }
  10. bytes = { version = "1.4" }
  11. serde = "1.0"
  12. flowy-derive = { path = "../flowy-derive" }
  13. lib-dispatch = { path = "../lib-dispatch" }
  14. [build-dependencies]
  15. flowy-codegen = { path = "../flowy-codegen" }
  16. [features]
  17. dart = ["flowy-codegen/dart"]
  18. ts = ["flowy-codegen/ts"]