rename to the typo i keep making

This commit is contained in:
nora 2024-08-26 01:58:37 +02:00
parent 094afb02fe
commit 8b7daaf0cf
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View file

@ -216,7 +216,7 @@ dependencies = [
]
[[package]]
name = "qotdd"
name = "quotdd"
version = "0.1.0"
dependencies = [
"eyre",

View file

@ -1,5 +1,5 @@
[package]
name = "qotdd"
name = "quotdd"
version = "0.1.0"
edition = "2021"

View file

@ -1,6 +1,6 @@
# qotdd
# quotdd
Quote of The Day Daemon.
**Qu**ote **o**f **T**he **D**ay **D**aemon.
A small service implementing the Quote of the Day protocol according to [RFC 865](https://datatracker.ietf.org/doc/html/rfc865).

View file

@ -1,6 +1,6 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.rustPlatform.buildRustPackage {
src = pkgs.lib.cleanSource ./.;
pname = "qotdd";
pname = "quotdd";
version = "0.1.0";
cargoLock.lockFile = ./Cargo.lock;
}