Skip to content

Commit

Permalink
Improved seat massager sample
Browse files Browse the repository at this point in the history
  • Loading branch information
ashbeitz committed Feb 27, 2024
1 parent fad1845 commit 7185b81
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ members = [
[workspace.dependencies]
async-std = "^1.5"
bytes = "1.4.0"
config = "0.14.0"
config = "0.13.3"
dyn-clone = "1.0.14"
env_logger= "0.11.2"
env_logger= "0.10.0"
futures = "0.3.28"
futures-core = "0.3.4"
futures-util = "0.3.28"
Expand All @@ -56,13 +56,13 @@ paho-mqtt = "0.12"
parking_lot = "0.12.1"
prost = "0.12"
prost-types = "0.12"
regex = " 1.10.3"
sdl2 = "0.34.0"
regex = " 1.9.3"
sdl2 = "0.35.2"
serde = "1.0.160"
serde_derive = "1.0.163"
serde_json = "^1.0"
strum = "0.26.1"
strum_macros = "0.26.1"
strum = "0.25"
strum_macros = "0.25.1"
tokio = "1.29.1"
tokio-console-subscriber = { version = "0.2.0", package = "console-subscriber" }
tokio-stream = "0.1.14"
Expand Down
2 changes: 1 addition & 1 deletion samples/seat_massager/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use serde_derive::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
#[derive(Serialize, Deserialize)]
pub struct TargetedPayload {
#[serde(rename = "@type")]
pub model_id: String,
Expand Down

0 comments on commit 7185b81

Please sign in to comment.