ClawFoxyVision 0.2.0

Advanced financial time series forecasting library using LSTM, GRU, and CNN-LSTM neural networks for price prediction with Rust and Burn
1
2
3
4
5
6
7
use std::env;

fn main() {
    let _src = env::var("CARGO_MANIFEST_DIR").unwrap();
    let _dst = format!("{}/src/build_info.rs", env::var("OUT_DIR").unwrap());
    built::write_built_file().expect("Failed to generate build info");
}