From dafed55870237d10d6bd4bf3bf6468d706290471 Mon Sep 17 00:00:00 2001 From: Zachary Harrold Date: Sun, 12 Nov 2023 20:27:56 +1100 Subject: [PATCH] Ran `taplo fmt` Also switched to short-hand dependency version format where possible. --- matchbox_signaling/Cargo.toml | 2 +- matchbox_socket/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/matchbox_signaling/Cargo.toml b/matchbox_signaling/Cargo.toml index 1058f2e1..6597479c 100644 --- a/matchbox_signaling/Cargo.toml +++ b/matchbox_signaling/Cargo.toml @@ -32,7 +32,7 @@ futures = { version = "0.3", default-features = false, features = ["alloc"] } uuid = { version = "1.4", features = ["serde", "v4"] } thiserror = "1.0" tokio-stream = "0.1" -async-trait = { version = "0.1" } +async-trait = "0.1" [dev-dependencies] tokio-tungstenite = "0.20.0" diff --git a/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index 78c1715d..763f1a0d 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -34,7 +34,7 @@ serde_json = { version = "1.0", default-features = false, features = ["alloc"] } log = { version = "0.4", default-features = false } thiserror = "1.0" cfg-if = "1.0" -async-trait = { version = "0.1" } +async-trait = "0.1" once_cell = { version = "1.17", default-features = false, features = [ "race", "alloc", @@ -73,7 +73,7 @@ web-sys = { version = "0.3.22", default-features = false, features = [ "RtcSessionDescription", "RtcSessionDescriptionInit", ] } -serde-wasm-bindgen = { version = "0.5" } +serde-wasm-bindgen = "0.5" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] async-tungstenite = { version = "0.23", default-features = false, features = [ @@ -85,4 +85,4 @@ bytes = { version = "1.1", default-features = false } async-compat = { version = "0.2", default-features = false } [dev-dependencies] -futures-test = { version = "0.3" } +futures-test = "0.3"