Compare commits

...

2 Commits

5 changed files with 749 additions and 304 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.vscode/

2
code/.gitignore vendored
View File

@ -6,4 +6,4 @@ target
*.pdb
**/mutants.out*/
.env
.env

1041
code/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -5,10 +5,16 @@ edition = "2024"
[dependencies]
chrono = { version = "0.4.44", features = ["serde"] }
diesel = { version = "2.3.9", features = ["mysql", "chrono"] }
dotenv = "0.15.0"
eframe = "0.34.2"
chrono = { version = "0.4.44", features = ["serde"] }
egui = "0.34.2"
egui_dock = "0.19.1"
egui_extras = "0.34.2"
rust_decimal = {version = "1.42.0", features = ["macros"]}
sqlx = "0.8.6"
[target.'cfg(target_os="windows")'.dependencies]
eframe = {version ="0.34.2",default-features=false, features=["glow"]}

View File

@ -11,6 +11,7 @@ fn main() -> eframe::Result{
.with_min_inner_size([300.0,200.0]),
..Default::default()
};
eframe::run_native("BCS", native_opts, Box::new(|cc| Ok(Box::new(app::App::new(cc)))),)
}