Files
quantum_bt_daavfx/src-tauri/Cargo.toml
T
daavfx 83037a3fdf 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
2026-02-10 18:32:08 -06:00

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]