Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronErhardt committed Nov 4, 2024
1 parent b7fb1d2 commit 221bf34
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ members = [
rand = "0.8.5"
relm4 = "0.9.1"
relm4-components = "0.9.1"
tokio = { version = "1.40.0", features = ["rt", "macros", "time", "rt-multi-thread", "sync"] }
tokio = { version = "1.41.0", features = ["rt", "macros", "time", "rt-multi-thread", "sync"] }
tracker = "0.2.2"
clap = { version = "4.5.7", features = ["derive"] }
clap = { version = "4.5.20", features = ["derive"] }
2 changes: 1 addition & 1 deletion examples/libadwaita/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"

[dev-dependencies]
rand = "0.8.5"
relm4 = { version = "0.8.0", features = ["libadwaita"] }
relm4 = { version = "0.9.1", features = ["libadwaita"] }

[[example]]
name = "simple_manual"
Expand Down
4 changes: 2 additions & 2 deletions examples/simple_manual.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ impl SimpleComponent for AppModel {
#[strong]
sender,
move |_| {
sender.input(Msg::Increment);
sender.input(AppMsg::Increment);
}
));

dec_button.connect_clicked(clone!(
#[strong]
sender,
move |_| {
sender.input(Msg::Decrement);
sender.input(AppMsg::Decrement);
}
));

Expand Down
2 changes: 1 addition & 1 deletion examples/tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl SimpleComponent for AppModel {
// ANCHOR: main
fn main() {
let app = RelmApp::new("relm4.test.simple");
app.set_global_css(".identical { background: #00ad5c; }");
relm4::set_global_css(".identical { background: #00ad5c; }");
app.run::<AppModel>(());
}
// ANCHOR_END: main
Expand Down

0 comments on commit 221bf34

Please sign in to comment.