Skip to content

Commit

Permalink
Add: Dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephira58 committed Sep 17, 2023
1 parent e12c97c commit 206d2a2
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 23 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 18 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vault_gui"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Xanthus58 <Xanthus58@protonmail.com>"]
description = "A gui frontend to manage a mock bank database"
Expand All @@ -16,14 +16,27 @@ egui-notify = "0.9.0"

#misc
self_update = "0.38.0" #Allows the application to update itself with the latest version
tokio = { version = "1.29.1", features = ["full"] } #Allows for aync/threading
regex = "1.9.1" #Uses this to check ip validity
tokio = { version = "1.32.0", features = ["full"] } #Allows for aync/threading
regex = "1.9.5" #Uses this to check ip validity
config = "0.13.3" #Used for config file

[profile.release]
opt-level = 3
debug = false
panic = "abort"
debug-assertions = false
overflow-checks = false
panic = "unwind"
codegen-units = 16
lto = true
incremental = false
incremental = false
strip = "debuginfo"

[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use eframe::egui::{self, Color32};
use egui_notify::{Anchor, Toast, Toasts};
use std::{net::IpAddr, str::FromStr, thread, time::Duration, sync::mpsc};
use std::{net::IpAddr, str::FromStr, sync::mpsc, thread, time::Duration};
use vault_gui::*;

fn main() -> Result<(), eframe::Error> {
Expand Down

0 comments on commit 206d2a2

Please sign in to comment.