Compare commits

..

No commits in common. "ad6cc00f845c1eca015e818f176300d8f2998509" and "5139defcb4ef73ab9355785c6dd0043e987b9247" have entirely different histories.

5 changed files with 303 additions and 748 deletions

1
.gitignore vendored
View File

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

1039
code/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -5,16 +5,10 @@ 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,7 +11,6 @@ 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)))),)
}