Compare commits
2 Commits
5139defcb4
...
ad6cc00f84
| Author | SHA1 | Date |
|---|---|---|
|
|
ad6cc00f84 | |
|
|
f3e4a95523 |
|
|
@ -0,0 +1 @@
|
|||
.vscode/
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -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"]}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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)))),)
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue