CryptoFox-Mukan-Edition/Cargo.toml
Mukan Erkin a68dc599a9 init: CryptoFox Mukan Edition — sunucu tabanlı RedCandle bot
Tauri/desktop bağımlılıkları çıkarıldı, Axum HTTP server + SSE ile
web dashboard eklendi. Bot yönetimi, açık/kapalı pozisyon takibi.
2026-04-19 06:15:05 +03:00

52 lines
1,009 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 = "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"