From 86d6d7410987f713371764ac32254d2a85f7e0ae Mon Sep 17 00:00:00 2001 From: Julia Naomi Date: Tue, 11 Aug 2026 18:21:38 -0400 Subject: [PATCH 1/2] feat(deps): Adds serde feature to aeronet_steam --- Cargo.lock | 1 + crates/aeronet_steam/Cargo.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index d0be125b..f246ec3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7729,6 +7729,7 @@ checksum = "5ff29921f6a7e8c85b0c971ec3c42002b9f535e3b8f4358cb22911d43709739a" dependencies = [ "bitflags 2.13.1", "paste", + "serde", "steamworks-sys", "thiserror 2.0.20", ] diff --git a/crates/aeronet_steam/Cargo.toml b/crates/aeronet_steam/Cargo.toml index 3dc57935..54f6c877 100644 --- a/crates/aeronet_steam/Cargo.toml +++ b/crates/aeronet_steam/Cargo.toml @@ -58,6 +58,8 @@ steamworks = { workspace = true } client = [] ## Enables the `server` module. server = [] +## Enables serde support for Steamworks types. +serde = ["steamworks/serde"] [lints] workspace = true From 01ee53aa830e10d1d232eba1543c2afa28743778 Mon Sep 17 00:00:00 2001 From: Julia Naomi Date: Tue, 11 Aug 2026 19:26:31 -0400 Subject: [PATCH 2/2] fmt --- crates/aeronet_steam/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/aeronet_steam/Cargo.toml b/crates/aeronet_steam/Cargo.toml index 54f6c877..8b59a22f 100644 --- a/crates/aeronet_steam/Cargo.toml +++ b/crates/aeronet_steam/Cargo.toml @@ -56,10 +56,10 @@ steamworks = { workspace = true } [features] ## Enables the `client` module. client = [] -## Enables the `server` module. -server = [] ## Enables serde support for Steamworks types. serde = ["steamworks/serde"] +## Enables the `server` module. +server = [] [lints] workspace = true