Cargo.toml 527 B

123456789101112131415161718192021
  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-sys = { path = "../flowy-sys" }
  8. flowy-log = { path = "../flowy-log" }
  9. flowy-user = { path = "../flowy-user" }
  10. log = "0.4.14"
  11. [dev-dependencies]
  12. serde = { version = "1.0", features = ["derive"] }
  13. bincode = { version = "1.3"}
  14. protobuf = {version = "2.24.1"}
  15. claim = "0.5.0"
  16. tokio = { version = "1", features = ["full"]}
  17. futures-util = "0.3.15"