Initial commit

This commit is contained in:
Artyom Belousov 2026-02-08 01:01:17 +03:00 committed by Artyom Belousov
commit ea042c33ba
26 changed files with 4452 additions and 0 deletions

17
Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "mtg-price-bot"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.101"
axum = "0.8.8"
mockall = "0.14.0"
mockito = "1.7.2"
reqwest = { version = "0.13.2", features=["json"] }
rstest = "0.26.1"
serde = { version = "1.0.228", features=["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.49.0", features=["full"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"