Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bircni committed Apr 13, 2024
1 parent 71b3937 commit d4b68bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.idea
Cargo.lock
**/*.rs.bk
*.pdb
*.pdb
.DS_Store
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ short_description = "A GUI for the awtrix clock."

[dependencies]
# Error handling
anyhow = "1.0.81"
anyhow = "1.0.82"
# Networking
reqwest = { version = "0.12.2", features = ["blocking"] }
reqwest = { version = "0.12.3", features = ["blocking"] }
# Parsing
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
Expand All @@ -40,4 +40,3 @@ egui_extras = { version = "0.27.2", features = ["syntect", "image"] }
image = "0.25.1"
open = "5.1.2"
ping = "0.5.2"
struct_iterable = "0.1.1"
4 changes: 2 additions & 2 deletions src/customapp.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use egui::Color32;
use serde::{Deserialize, Serialize, Serializer};
use struct_iterable::Iterable;
//use struct_iterable::Iterable;

#[derive(Serialize, Deserialize, Debug, Iterable)]
#[derive(Serialize, Deserialize, Debug)]
pub struct CustomApp {
#[serde(skip_serializing_if = "String::is_empty")]
pub text: String,
Expand Down

0 comments on commit d4b68bd

Please sign in to comment.