2024-12-27 09:10:48 +00:00
|
|
|
[package]
|
|
|
|
name = "bot"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
2024-12-27 09:14:43 +00:00
|
|
|
clap = { version = "4.5.23", features = ["derive"] }
|
|
|
|
post = {path = "../post"}
|
|
|
|
infrastructure = { path = "../infrastructure"}
|
|
|
|
signal-hook = "0.3.17"
|
|
|
|
log = "0.4.22"
|
|
|
|
env_logger = "0.11.6"
|
|
|
|
anyhow = "1.0.95"
|
2024-12-28 11:26:16 +00:00
|
|
|
serde = { version = "1.0.216", features = ["derive"] }
|
|
|
|
base64 = "0.22.1"
|
2024-12-30 12:07:03 +00:00
|
|
|
serde_json = "1.0.134"
|
2025-01-04 14:59:37 +00:00
|
|
|
reqwest = { version = "0.12.11", features = ["json", "multipart"] }
|
2024-12-30 15:48:07 +00:00
|
|
|
chrono = "0.4.39"
|