mirror of
https://github.com/daavfx/quantum_bt_daavfx.git
synced 2026-08-16 19:48:05 +00:00
- Added indicatorService.ts with Web Worker pool for background calculations - Added dataService.ts for Rust backend bridge - Added replayService.ts for market replay functionality - Added ReplayControls.tsx component - Added src/types/indicators.ts with 8 indicator definitions - Added Rust replay.rs with async commands - Updated lib.rs with replay state management - Fixed Tauri imports from @tauri-apps/api/tauri to @tauri-apps/api/core - Updated Chart.tsx integration with replay controls
30 lines
665 B
TOML
30 lines
665 B
TOML
[package]
|
|
name = "quantum_bt"
|
|
version = "0.1.0"
|
|
description = "Quantum Backtester - Visual Strategy Testing Engine"
|
|
authors = ["DAAVFX"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.3", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.9.5", features = [] }
|
|
tauri-plugin-log = "2"
|
|
rand = "0.8"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rust_decimal = { version = "1.33", features = ["serde"] }
|
|
thiserror = "2"
|
|
csv = "1.3"
|
|
|
|
[workspace]
|