Compare commits
No commits in common. "ad6cc00f845c1eca015e818f176300d8f2998509" and "5139defcb4ef73ab9355785c6dd0043e987b9247" have entirely different histories.
ad6cc00f84
...
5139defcb4
|
|
@ -1 +0,0 @@
|
||||||
.vscode/
|
|
||||||
|
|
@ -6,4 +6,4 @@ target
|
||||||
*.pdb
|
*.pdb
|
||||||
|
|
||||||
**/mutants.out*/
|
**/mutants.out*/
|
||||||
.env
|
.env
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -5,16 +5,10 @@ edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4.44", features = ["serde"] }
|
chrono = { version = "0.4.44", features = ["serde"] }
|
||||||
|
diesel = { version = "2.3.9", features = ["mysql", "chrono"] }
|
||||||
dotenv = "0.15.0"
|
dotenv = "0.15.0"
|
||||||
eframe = "0.34.2"
|
eframe = "0.34.2"
|
||||||
chrono = { version = "0.4.44", features = ["serde"] }
|
|
||||||
egui = "0.34.2"
|
egui = "0.34.2"
|
||||||
egui_dock = "0.19.1"
|
egui_dock = "0.19.1"
|
||||||
egui_extras = "0.34.2"
|
egui_extras = "0.34.2"
|
||||||
rust_decimal = {version = "1.42.0", features = ["macros"]}
|
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"]}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@ fn main() -> eframe::Result{
|
||||||
.with_min_inner_size([300.0,200.0]),
|
.with_min_inner_size([300.0,200.0]),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
eframe::run_native("BCS", native_opts, Box::new(|cc| Ok(Box::new(app::App::new(cc)))),)
|
eframe::run_native("BCS", native_opts, Box::new(|cc| Ok(Box::new(app::App::new(cc)))),)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue