Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
flosse committed Oct 2, 2024
1 parent 4f21e56 commit 3a2f2ba
Show file tree
Hide file tree
Showing 11 changed files with 1,137 additions and 1,174 deletions.
1,885 changes: 871 additions & 1,014 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ serde = { version = "1.0", features = ["derive"] }

[dev-dependencies]
env_logger = "0.11"
tempfile = "3.10"
tempfile = "3.13"
4 changes: 2 additions & 2 deletions crates/desktop-egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ cawr-adapter = "=0.0.0"

# External dependencies
anyhow = "1.0"
eframe = "0.27"
eframe = "0.29"
log = "0.4"
tokio = { version = "1.38", features = ["rt-multi-thread"] }
tokio = { version = "1.40", features = ["rt-multi-thread"] }
2 changes: 1 addition & 1 deletion crates/desktop-egui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ where
let mut app = App::new(app_api, rt, ctx);
let init_cmds = vec![ui::Cmd::ReadAllAreasOfLife, ui::Cmd::ReadAllThoughts];
handle_commands(init_cmds, &mut app);
Box::new(app)
Ok(Box::new(app))
}),
)
.map_err(|err| anyhow!("Unable to start dektop application: {err}"))
Expand Down
2 changes: 1 addition & 1 deletion crates/infrastructure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ clap = { version = "4.5", features = ["derive"] }
directories = "5.0"
log = "0.4"
pretty_env_logger = "0.5"
tokio = { version = "1.38", features = ["full"] }
tokio = { version = "1.40", features = ["full"] }
2 changes: 1 addition & 1 deletion crates/web-app-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ serde = "1.0"
thiserror = "1.0"

[dependencies.gloo-net]
version = "0.5"
version = "0.6"
default-features = false
features = ["http", "json"]
4 changes: 2 additions & 2 deletions crates/web-app-kern/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ rust-version.workspace = true
[dependencies]
cawr-json-boundary = "=0.0.0"
cawr-web-app-api = "=0.0.0"
derive_more = "0.99.18"
gloo-net = { version = "0.5.0", default-features = false }
derive_more = { version = "1.0.0", features = ["from"] }
gloo-net = { version = "0.6.0", default-features = false }
Loading

0 comments on commit 3a2f2ba

Please sign in to comment.