Skip to content

Commit

Permalink
update github urls to pixeldike
Browse files Browse the repository at this point in the history
  • Loading branch information
lilioid committed Mar 25, 2024
1 parent 8c3db1f commit 149fe09
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
authors = ["Finn-Thorben Sell <[email protected]>"]
edition = "2021"
description = "pixel drawing game for programmers inspired by reddits r/place"
documentation = "https://docs.rs/pixelflut-4k"
documentation = "https://docs.rs/pixeldike"
readme = "README.md"
repository = "https://github.com/ftsell/pixelflut.git"
repository = "https://github.com/ftsell/pixeldike.git"
license = "MIT"
keywords = ["pixelflut"]
categories = ["command-line-utilities", "games", "parser-implementations"]
Expand All @@ -29,7 +29,7 @@ cli = ["tcp", "dep:clap", "dep:rand", "dep:tracing-subscriber", "dep:image"]
path = "src/lib.rs"

[[bin]]
name = "pixelflut"
name = "pixeldike"
path = "src/main.rs"
required-features = ["cli"]

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ This installation methods assumes you already have a working rust toolchain and
If you do you can run the following:

```bash
cargo install --git=https://github.com/ftsell/pixelflut.git --all-features --bin=pixelflut
cargo install --git=https://github.com/ftsell/pixeldike.git --all-features --bin=pixelflut
```

## Usage examples
- Retrieve command-line help

```bash
pixelflut -h
pixelflut server -h
pixeldike -h
pixeldike server -h
```

- Start a pixelflut tcp server on port 1234 with default size and persisted in the file *~/pixmap.pixmap*

```bash
pixelflut server --file ~/pixmap.pixmap --tcp 1234
pixeldike server --file ~/pixmap.pixmap --tcp 1234
```

- Start a pixelflut udp server on port 1234 with custom size and persisted in the file *~/pixmap.pixmap*

```bash
pixelflut server --file ~/pixmap.pixmap --udp 1234 --width 10 --height 20
pixeldike server --file ~/pixmap.pixmap --udp 1234 --width 10 --height 20
```

0 comments on commit 149fe09

Please sign in to comment.