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