added support for templating and tailwindcss

This commit is contained in:
Steven 2023-08-04 18:45:17 -04:00
parent a87ae3dcd3
commit dc3b994247
16 changed files with 1668 additions and 70 deletions

View file

@ -1,5 +1,5 @@
[package]
name = "mtg_seller_bot"
name = "sk_tcg_trader"
version = "0.1.0"
edition = "2021"
@ -17,3 +17,9 @@ 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"]}
anyhow = "1.0.72"
askama = "0.12.0"
tower = "0.4.13"
tower-http = { version = "0.4.3", features = ["fs"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }