Implemented CSV and Excel parsing logic in src/main.rs

This commit is contained in:
2026-04-15 18:13:18 +03:00
parent 47bfc71b7e
commit ce00127978
4 changed files with 1276 additions and 326 deletions

View File

@@ -1,17 +1,19 @@
[package]
name = "ae_anons"
version = "0.1.0"
edition = "2021"
edition = "2024"
[dependencies]
reqwest = { version = "0.11", features = ["json", "multipart"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
urlencoding = "2.1.3"
tokio = { version = "1.51.1", features = ["full"] }
csv = "1.4.0"
dotenv = "0.15.0"
reqwest = { version = "0.13", features = ["json", "multipart", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
urlencoding = "2.1"
tokio = { version = "1.0", features = ["full"] }
csv = "1.3"
dotenv = "0.15"
calamine = "0.26"
chrono = "0.4"
[dev-dependencies]
tokio = { version = "1.51.1", features = ["full", "rt-multi-thread"] }
tokio = { version = "1.0", features = ["full", "rt-multi-thread"] }