mirror of
https://github.com/daavfx/quantum_bt_daavfx.git
synced 2026-08-21 22:18:04 +00:00
V_1.0: Added replay system, indicators, and data services from charting_daavfx
- 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
This commit is contained in:
+11
-7
@@ -1,15 +1,12 @@
|
||||
[package]
|
||||
name = "app"
|
||||
name = "quantum_bt"
|
||||
version = "0.1.0"
|
||||
description = "A Tauri App"
|
||||
authors = ["you"]
|
||||
license = ""
|
||||
repository = ""
|
||||
description = "Quantum Backtester - Visual Strategy Testing Engine"
|
||||
authors = ["DAAVFX"]
|
||||
license = "MIT"
|
||||
edition = "2021"
|
||||
rust-version = "1.77.2"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[lib]
|
||||
name = "app_lib"
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
@@ -23,3 +20,10 @@ 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]
|
||||
|
||||
Reference in New Issue
Block a user