Cargo.toml 659 B

12345678910111213141516171819202122
  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. tracing = { version = "0.1" }
  12. log = "0.4.14"
  13. [dev-dependencies]
  14. serde = { version = "1.0", features = ["derive"] }
  15. bincode = { version = "1.3"}
  16. protobuf = {version = "2.24.1"}
  17. claim = "0.5.0"
  18. tokio = { version = "1", features = ["full"]}
  19. futures-util = "0.3.15"