1
Fork 0
holycow/holycow_backend/Cargo.toml

27 lines
1 KiB
TOML
Raw Normal View History

2024-11-27 23:01:46 +00:00
[package]
2024-11-28 11:24:15 +00:00
name = "holycow_backend"
2024-11-27 23:01:46 +00:00
version = "0.1.0"
2024-11-30 21:51:49 +00:00
authors = ["Stefano Pigozzi <me@steffo.eu>"]
2024-11-27 23:01:46 +00:00
edition = "2021"
2024-11-30 21:51:49 +00:00
description = "Backend for a Telegram Mini App for match and skill level tracking among players in a group"
2024-11-30 22:34:29 +00:00
repository = "https://forge.steffo.eu/starshard/holycow"
2024-11-30 18:10:02 +00:00
license = "EUPL-1.2"
2024-11-30 21:51:49 +00:00
keywords = ["mtg", "openskill", "wenglin", "telegram", "telegram-miniapp"]
categories = []
2024-11-27 23:01:46 +00:00
[dependencies]
anyhow = "1.0.93"
axum = { version = "0.7.9", features = ["macros"] }
2024-11-28 11:24:15 +00:00
diesel = { version = "2.2.5", features = ["chrono", "postgres"] }
2024-11-27 23:01:46 +00:00
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
log = "0.4.22"
micronfig = "0.3.0"
pretty_env_logger = "0.5.0"
2024-11-28 18:16:03 +00:00
skillratings = { version = "0.27.1", features = ["serde"] }
2024-11-27 23:01:46 +00:00
teloxide = { version = "0.13.0", features = ["webhooks-axum"] }
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread", "net"] }
serde = { version = "1.0.215", features = ["derive"] }
2024-11-28 18:16:03 +00:00
chrono = { version = "0.4.38", features = ["serde"] }
url = { version = "2.5.4", features = ["serde"] }