Skip to content

Commit 06baa50

Browse files
committed
chose(deps): upgraded notify, indicatif, and wasm-bindgen
1 parent 7466ea3 commit 06baa50

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/perseus-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include_dir = "0.7"
3232
thiserror = "1"
3333
fmterr = "0.1"
3434
cargo_toml = "0.15"
35-
indicatif = "=0.17.0-beta.1" # Not stable, but otherwise error handling is just about impossible
35+
indicatif = "0.17"
3636
console = "0.15"
3737
serde = "1"
3838
serde_json = "1"
@@ -42,7 +42,7 @@ tokio = { version = "1", features = [ "macros", "rt-multi-thread", "sync" ] }
4242
warp = "0.3"
4343
command-group = "2"
4444
ctrlc = { version = "3.2", features = ["termination"] }
45-
notify = "=5.0.0-pre.13"
45+
notify = "6"
4646
futures = "0.3"
4747
tokio-stream = "0.1"
4848
reqwest = { version = "0.11", features = [ "json", "stream" ] }

packages/perseus-cli/src/cmd.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use indicatif::{ProgressBar, ProgressStyle};
44
use std::io::Write;
55
use std::path::Path;
66
use std::process::{Command, Stdio};
7+
use std::time::Duration;
78

89
// Some useful emojis
910
pub static SUCCESS: Emoji<'_, '_> = Emoji("✅", "success!");
@@ -72,7 +73,7 @@ pub fn cfg_spinner(spinner: ProgressBar, message: &str) -> ProgressBar {
7273
spinner.set_style(ProgressStyle::default_spinner().tick_chars("⠁⠂⠄⡀⢀⠠⠐⠈ "));
7374
spinner.set_message(format!("{}...", &message));
7475
// Tick the spinner every 50 milliseconds
75-
spinner.enable_steady_tick(50);
76+
spinner.enable_steady_tick(Duration::from_millis(50));
7677

7778
spinner
7879
}

website/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde_json = "1"
2020
lazy_static = "1"
2121
# To avoid insane target-gating on event handlers, we put this everywhere for convenience
2222
web-sys = { version = "0.3", features = [ "Event", "EventTarget", "Element", "Window", "Document", "DomRect", "HtmlCollection", "IntersectionObserver", "IntersectionObserverInit", "IntersectionObserverEntry", "KeyboardEvent" ] }
23-
wasm-bindgen = "0.2.84"
23+
wasm-bindgen = "0.2.92"
2424

2525
[target.'cfg(engine)'.dependencies]
2626
tokio = { version = "1", features = [ "macros", "rt", "rt-multi-thread" ] }

0 commit comments

Comments
 (0)