Cargo.toml 243 B

12345678910
  1. [package]
  2. name = "reader"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. calamine = "0.22" # For reading Excel files
  7. tokio = { version = "1", features = ["full"] }
  8. tokio-postgres = "0.7" # Async Postgres client
  9. chrono = "0.4"