Cargo.toml 774 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "lib-infra"
  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. uuid = { version = "0.8", features = ["serde", "v4"] }
  8. diesel = {version = "1.4.8", features = ["sqlite"]}
  9. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  10. diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
  11. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  12. lib-sqlite = { path = "../lib-sqlite" }
  13. lazy_static = "1.4.0"
  14. protobuf = {version = "2.18.0"}
  15. log = "0.4.14"
  16. chrono = "0.4.19"
  17. bytes = { version = "1.0" }
  18. pin-project = "1.0"
  19. futures-core = { version = "0.3", default-features = false }
  20. tokio = { version = "1.0", features = ["time", "rt"] }
  21. rand = "0.8.3"