CryptoFox-Mukan-Edition/Cargo.toml

56 lines
1.1 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"