From 3369aa51bc95ea13066990cb8f6cb1ba5ac5ed19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Wed, 6 Mar 2024 10:20:13 +0100 Subject: [PATCH] Add nym- prefix to async-file-watcher --- common/async-file-watcher/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/async-file-watcher/Cargo.toml b/common/async-file-watcher/Cargo.toml index eb7ddd6ff3..5f74d110d3 100644 --- a/common/async-file-watcher/Cargo.toml +++ b/common/async-file-watcher/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "async-file-watcher" +name = "nym-async-file-watcher" version = "0.1.0" -edition = "2021" +edition.workspace = true license.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -log = "0.4" -tokio = { workspace = true, features = ["time"] } futures = { workspace = true } +log = "0.4" notify = "5.1.0" +tokio = { workspace = true, features = ["time"] }