Skip to content

Commit

Permalink
new repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
aggyomfg committed Apr 21, 2024
1 parent f12e880 commit f88cda5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ authors = [
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/Sliman4/bevy_slinet"
homepage = "https://github.com/Sliman4/bevy_slinet#readme"
repository = "https://github.com/aggyomfg/bevy_slinet"
homepage = "https://github.com/aggyomfg/bevy_slinet#readme"
documentation = "https://docs.rs/bevy_slinet"
description = "A simple networking plugin for bevy."
categories = ["game-development", "network-programming"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A simple networking plugin for bevy.

[![docs.rs](https://img.shields.io/docsrs/bevy_slinet)](https://docs.rs/bevy_slinet)
[![Crates.io](https://img.shields.io/crates/v/bevy_slinet)](https://crates.io/crates/bevy_slinet)
[![Crates.io](https://img.shields.io/crates/l/bevy_slinet)](https://github.com/Sliman4/bevy_slinet/tree/main/LICENSE)
[![Crates.io](https://img.shields.io/crates/l/bevy_slinet)](https://github.com/aggyomfg/bevy_slinet/tree/main/LICENSE)

## Features

Expand Down Expand Up @@ -144,7 +144,7 @@ Note: you should implement keep-alive and disconnection systems yourself, or loo

## More examples

[Here](https://github.com/Sliman4/bevy_slinet/tree/main/examples).
[Here](https://github.com/aggyomfg/bevy_slinet/tree/main/examples).

### Compatibility table

Expand Down
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ struct PacketReceiver<Config: ServerConfig>(

fn create_setup_system<Config: ServerConfig>(address: SocketAddr) -> impl Fn(Commands) {
#[cfg(target_family = "wasm")]
compile_error!("Why would you run a bevy_slinet server on WASM? If you really need this, please open an issue (https://github.com/Sliman4/bevy_slinet/issues/new)");
compile_error!("Why would you run a bevy_slinet server on WASM? If you really need this, please open an issue (https://github.com/aggyomfg/bevy_slinet/issues/new)");

move |mut commands: Commands| {
let (conn_tx, conn_rx) = tokio::sync::mpsc::unbounded_channel();
Expand Down

0 comments on commit f88cda5

Please sign in to comment.