bitmine/Cargo.toml
Ivan I. Ovchinnikov 32d57b9eaf basic redmine tasks
2026-03-13 22:35:39 +03:00

32 lines
856 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "bitmine"
version = "0.1.0"
edition = "2024"
[dependencies]
# Асинхронная среда выполнения
tokio = { version = "1.35", features = ["full"] }
# Web-фреймворк
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "trace"] }
# Сериализация данных
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# HTTP клиент (для запросов к Redmine и другой системе)
reqwest = { version = "0.11", features = ["json"] }
# Работа с переменными окружения
dotenvy = "0.15"
# Логирование
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Шаблонизатор (будем рендерить HTML на сервере)
askama = "0.12"
askama_axum = "0.4"