CryptoFox-Mukan-Edition/Cargo.toml
Mukan Erkin 2ff8d57c08 feat(mse): shared bot modal component + pagination on positions/bots
- Extract bot creation modal to _bot_modal.html partial (TomSelect, min_notional display)
- bots.html and index.html now include the partial via {% include %}
- Remove duplicate modal JS from bots.html; add onBotCreated/onModeChange hooks
- Add 20-item pagination to positions.html (open + closed tables)
- positions.html: remove redundant loadMode (handled by _header.html partial)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-25 10:45:06 +03:00

64 lines
1.2 KiB
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 = "mukan-special-edition"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "mse"
path = "src/main.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP server
axum = { version = "0.7", features = ["macros"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "cors"] }
# HTTP client (Binance REST API)
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Hata yönetimi
anyhow = "1.0"
# Loglama
log = "0.4"
env_logger = "0.11"
# Zaman
chrono = { version = "0.4", features = ["serde"] }
# UUID
uuid = { version = "1", features = ["v4", "serde"] }
# Veritabanı
rusqlite = { version = "0.31", features = ["bundled"] }
# Şifreleme (Binance imzalama)
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
# .env yükleme
dotenvy = "0.15"
# SSE
tokio-stream = { version = "0.1", features = ["sync"] }
futures-core = "0.3"
# WebSocket
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-native-roots"] }
futures-util = "0.3"
# Auth
bcrypt = "0.15"
axum-extra = { version = "0.9", features = ["cookie"] }
# Async stream generator
async-stream = "0.3"
minijinja = "2.19.0"