Cargo.toml 463 B

12345678910111213141516
  1. [package]
  2. name = "flowy-sqlite"
  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. r2d2 = "0.8.9"
  8. diesel = {version = "1.4.7", features = ["sqlite"]}
  9. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  10. diesel_migrations = {version = "1.4.0", features = ["sqlite"]}
  11. lazy_static = "1.4.0"
  12. scheduled-thread-pool = "0.2.5"
  13. error-chain = "=0.12.0"
  14. log = "0.4.11"