19 lines
500 B
TOML
19 lines
500 B
TOML
[package]
|
|
name = "mtg_seller_bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = "0.6.19"
|
|
chrono = "0.4.26"
|
|
dotenv = "0.15.0"
|
|
hyper = "0.14.27"
|
|
indicatif = "0.17.5"
|
|
lazy_static = "1.4.0"
|
|
prometheus = "0.13.3"
|
|
reqwest = { version = "0.11.18", features = ["json"] }
|
|
serde = { version = "1.0.178", features = ["derive"]}
|
|
serde_json = "1.0.104"
|
|
tokio = {version = "1.29.1", features = ["full"]}
|