Skip to content

Commit c04c73d

Browse files
committed
Workspace dep: serde
1 parent 5797825 commit c04c73d

6 files changed

Lines changed: 6 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ futures = "0.3"
6363
clap = "4.5"
6464
anyhow = "1.0"
6565
serde_json = "1.0"
66+
serde = "1"
6667

6768
[profile.release]
6869
opt-level = "z"

examples/wgpu_room/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ wgpu = "25.0"
2020
egui = "0.31.1"
2121
egui-wgpu = "0.31.1"
2222
eframe = { version = "0.31.1", default-features = false, features = ["default_fonts", "wgpu", "persistence"] }
23-
serde = { version = "1", features = ["derive"] }
23+
serde = { workspace = true, features = ["derive"] }
2424
log = { workspace = true }
2525
env_logger = { workspace = true }
2626
console-subscriber = { version = "0.1.10", features = ["parking_lot"], optional = true }

libwebrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ glib-main-loop = [ "dep:glib" ]
1818
[dependencies]
1919
livekit-protocol = { workspace = true }
2020
log = { workspace = true }
21-
serde = { version = "1.0", features = ["derive"] }
21+
serde = { workspace = true, features = ["derive"] }
2222
serde_json = { workspace = true }
2323
thiserror = { workspace = true }
2424

livekit-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ __rustls-tls = ["tokio-tungstenite?/__rustls-tls", "reqwest?/__rustls"]
7171
[dependencies]
7272
livekit-protocol = { workspace = true }
7373
thiserror = { workspace = true }
74-
serde = { version = "1.0", features = ["derive"] }
74+
serde = { workspace = true, features = ["derive"] }
7575
sha2 = "0.10"
7676
url = "2.3"
7777
log = { workspace = true }

livekit-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ futures-util = { workspace = true, features = ["sink"] }
1717
parking_lot = { workspace = true }
1818
prost = "0.12"
1919

20-
serde = "1.0"
20+
serde = { workspace = true }
2121
pbjson = "0.6"
2222
pbjson-types = "0.6"
2323
thiserror = { workspace = true }

livekit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ livekit-api = { workspace = true }
3131
libwebrtc = { workspace = true }
3232
livekit-protocol = { workspace = true }
3333
prost = "0.12"
34-
serde = { version = "1", features = ["derive"] }
34+
serde = { workspace = true, features = ["derive"] }
3535
serde_json = { workspace = true }
3636
tokio = { workspace = true, default-features = false, features = ["sync", "macros", "fs"] }
3737
parking_lot = { workspace = true }

0 commit comments

Comments
 (0)