Cargo.toml 701 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "flowy-sdk"
  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. flowy-dispatch = { path = "../flowy-dispatch", features = ["use_tracing"]}
  8. flowy-log = { path = "../flowy-log" }
  9. #flowy-log = { path = "../flowy-log", features = ["use_bunyan"] }
  10. flowy-user = { path = "../flowy-user" }
  11. flowy-infra = { path = "../flowy-infra" }
  12. tracing = { version = "0.1" }
  13. log = "0.4.14"
  14. [dev-dependencies]
  15. serde = { version = "1.0", features = ["derive"] }
  16. bincode = { version = "1.3"}
  17. protobuf = {version = "2.24.1"}
  18. claim = "0.5.0"
  19. tokio = { version = "1", features = ["full"]}
  20. futures-util = "0.3.15"