Implemented CSV and Excel parsing logic in src/main.rs
This commit is contained in:
22
Cargo.toml
22
Cargo.toml
@@ -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"] }
|
||||
Reference in New Issue
Block a user