Cargo.toml 594 B

12345678910111213141516171819202122
  1. [package]
  2. name = "dart-notify"
  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. log = "0.4.14"
  11. bytes = { version = "1.0" }
  12. flowy-derive = {path = "../../../shared-lib/flowy-derive" }
  13. lib-dispatch = {path = "../lib-dispatch" }
  14. [features]
  15. dart = ["lib-infra/dart"]
  16. [build-dependencies]
  17. lib-infra = { path = "../../../shared-lib/lib-infra", features = ["pb_gen"] }