23 lines
525 B
TOML
23 lines
525 B
TOML
[package]
|
|
name = "ae_anons"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12", 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"] }
|
|
dotenv = "0.15"
|
|
calamine = "0.26"
|
|
chrono = "0.4"
|
|
regex = "1.11"
|
|
futures = "0.3"
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.0", features = ["full", "rt-multi-thread"] } |