feat: rename
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-07-22 22:12:10 +02:00
parent 58647725f9
commit 0c33863c1d
6 changed files with 25 additions and 25 deletions

View File

@@ -1,9 +1,9 @@
[package]
name = "nodrop"
name = "drop-queue"
edition = "2024"
description = "nodrop, is a simple drop queue system for async operations. (Until async-drop is a thing)"
description = "drop-queue, is a simple drop queue system for async operations. (Until async-drop is a thing)"
license = "MIT"
repository = "https://github.com/kjuulh/nodrop"
repository = "https://github.com/kjuulh/drop-queue"
authors = ["kjuulh <contact@kasperhermansen.com>"]
version.workspace = true

View File

@@ -160,7 +160,7 @@ mod notmad {
#[async_trait]
impl notmad::Component for DropQueue {
fn name(&self) -> Option<String> {
Some("nodrop/drop-queue".into())
Some("drop-queue/drop-queue".into())
}
async fn run(&self, cancellation_token: CancellationToken) -> Result<(), MadError> {