Initial project import

This commit is contained in:
Alexey Barabanov
2026-04-14 18:53:15 +03:00
commit 6400c258da
5 changed files with 2993 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "ae_anons"
version = "0.1.0"
edition = "2021"
[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"
[dev-dependencies]
tokio = { version = "1.51.1", features = ["full", "rt-multi-thread"] }