Tauri/desktop bağımlılıkları çıkarıldı, Axum HTTP server + SSE ile web dashboard eklendi. Bot yönetimi, açık/kapalı pozisyon takibi.
52 lines
1,009 B
TOML
52 lines
1,009 B
TOML
[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"
|