Cargo.toml 391 B

123456789101112
  1. [package]
  2. name = "flowy-db"
  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. diesel = {version = "1.4.7", features = ["sqlite"]}
  8. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  9. diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
  10. flowy-infra = {path = "../flowy-infra"}