Skip to content

Commit 654b373

Browse files
committed
Release livesplit-hotkey 0.8.0
1 parent 106a3f0 commit 654b373

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ itoa = { version = "1.0.3", default-features = false }
4444
time = { version = "0.3.36", default-features = false }
4545
hashbrown = "0.15.0"
4646
libm = "0.2.1"
47-
livesplit-hotkey = { path = "crates/livesplit-hotkey", version = "0.7.0", default-features = false }
47+
livesplit-hotkey = { path = "crates/livesplit-hotkey", version = "0.8.0", default-features = false }
4848
livesplit-title-abbreviations = { path = "crates/livesplit-title-abbreviations", version = "0.3.0" }
4949
memchr = { version = "2.3.4", default-features = false }
5050
simdutf8 = { git = "https://github.com/CryZe/simdutf8", branch = "wasm-ub-panic", default-features = false, features = [

crates/livesplit-hotkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livesplit-hotkey"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Christopher Serr <[email protected]>"]
55
documentation = "https://docs.rs/livesplit-hotkey/"
66
repository = "https://github.com/LiveSplit/livesplit-core/tree/master/crates/livesplit-hotkey"

crates/livesplit-hotkey/src/hotkey.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl<'de> Deserialize<'de> for Hotkey {
7474

7575
struct HotkeyVisitor;
7676

77-
impl<'de> serde::de::Visitor<'de> for HotkeyVisitor {
77+
impl serde::de::Visitor<'_> for HotkeyVisitor {
7878
type Value = Hotkey;
7979

8080
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {

crates/livesplit-hotkey/src/key_code.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ impl<'de> Deserialize<'de> for KeyCode {
11851185

11861186
struct KeyCodeVisitor;
11871187

1188-
impl<'de> serde::de::Visitor<'de> for KeyCodeVisitor {
1188+
impl serde::de::Visitor<'_> for KeyCodeVisitor {
11891189
type Value = KeyCode;
11901190

11911191
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
@@ -1305,7 +1305,7 @@ impl<'de> Deserialize<'de> for KeyCodeClass {
13051305

13061306
struct KeyCodeClassVisitor;
13071307

1308-
impl<'de> serde::de::Visitor<'de> for KeyCodeClassVisitor {
1308+
impl serde::de::Visitor<'_> for KeyCodeClassVisitor {
13091309
type Value = KeyCodeClass;
13101310

13111311
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {

crates/livesplit-hotkey/src/modifiers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl<'de> Deserialize<'de> for Modifiers {
8686

8787
struct ModifiersVisitor;
8888

89-
impl<'de> serde::de::Visitor<'de> for ModifiersVisitor {
89+
impl serde::de::Visitor<'_> for ModifiersVisitor {
9090
type Value = Modifiers;
9191

9292
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {

0 commit comments

Comments
 (0)