Cargo.toml 639 B

123456789101112131415161718192021222324
  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.20.0" }
  9. allo-isolate = { version = "^0.1", features = ["catch-unwind"] }
  10. tracing = { version = "0.1", features = ["log"] }
  11. bytes = { version = "1.0" }
  12. serde = "1.0"
  13. flowy-derive = { path = "../flowy-derive" }
  14. lib-dispatch = { path = "../lib-dispatch" }
  15. [build-dependencies]
  16. flowy-codegen = { path = "../flowy-codegen" }
  17. [features]
  18. dart = ["flowy-codegen/dart"]
  19. ts = ["flowy-codegen/ts"]