Skip to content

Commit

Permalink
BevyRenet: disable steam feature (just for releasing new version) sin…
Browse files Browse the repository at this point in the history
…ce we depend of some unreleased steamworks features
  • Loading branch information
lucaspoffo committed Nov 12, 2023
1 parent f05ec08 commit bae25cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bevy_renet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version = "0.0.9"
default = ["transport"]
serde = ["renet/serde"]
transport = ["renet/transport"]
steam = ["renet_steam"]
# steam = ["renet_steam"]

[[example]]
name = "simple"
Expand All @@ -23,7 +23,7 @@ required-features = ["serde", "transport"]
[dependencies]
bevy = {version = "0.12", default-features = false}
renet = {path = "../renet", version = "0.0.13", features = ["bevy"]}
renet_steam = { path = "../renet_steam", version = "0.0.1", features = [ "bevy" ], optional = true }
# renet_steam = { path = "../renet_steam", version = "0.0.1", features = [ "bevy" ], optional = true }

[dev-dependencies]
bevy = {version = "0.12", default-features = false, features = ["bevy_core_pipeline", "bevy_render", "bevy_asset", "bevy_pbr", "x11", "tonemapping_luts", "ktx2", "zstd"]}
Expand Down
4 changes: 2 additions & 2 deletions bevy_renet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use renet::{RenetClient, RenetServer, ServerEvent};
#[cfg(feature = "transport")]
pub mod transport;

#[cfg(feature = "steam")]
pub mod steam;
// #[cfg(feature = "steam")]
// pub mod steam;

/// This system set is where all transports receive messages
///
Expand Down

0 comments on commit bae25cc

Please sign in to comment.