From 149fe098791c61e4304bdd8b4c537d0903b90db9 Mon Sep 17 00:00:00 2001 From: ftsell Date: Mon, 25 Mar 2024 15:14:37 +0100 Subject: [PATCH] update github urls to pixeldike --- Cargo.toml | 6 +++--- README.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c14b4ef..dbcf816 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,9 +4,9 @@ version = "0.1.0" authors = ["Finn-Thorben Sell "] 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"] @@ -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"] diff --git a/README.md b/README.md index 56d75f4..811b739 100644 --- a/README.md +++ b/README.md @@ -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 ```