lucaspoffo / renet

Server/Client network library for multiplayer games with authentication and connection management made with Rust
Apache License 2.0
620 stars 65 forks source link

Actually make transport optional in bevy_renet #127

Closed NiseVoid closed 7 months ago

NiseVoid commented 7 months ago

bevy_renet didn't disable default features on renet, thus transport would always get enabled even if the feature wasn't enabled. This pull request fixes that

lucaspoffo commented 7 months ago

Thanks! Interesting that cargo didn't warn that a feature made no difference since it was always enabled.