From e95f3281a4253c88433624315a0b8eb433ef7854 Mon Sep 17 00:00:00 2001 From: hrzlgnm Date: Wed, 7 Aug 2024 23:01:44 +0200 Subject: [PATCH 1/2] Fix typo in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fbabba0..22a08d2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ - [Where EXE?](#where-exe) - [github releases](#github-releases) - [winget](#winget) - - [Acknowledgements](#acknowledgements) + - [Acknowledgments](#acknowledgments) This app allows for browsing of services using mDNS @@ -28,7 +28,7 @@ The latest release can be downloaded here [Release](https://github.com/hrzlgnm/m winget install mdns-browser ``` -## Acknowledgements +## Acknowledgments The main workhorse of this application is the great library [mdns-sd](https://github.com/keepsimple1/mdns-sd) used to do all the mDNS magic happening in the backend of the app. Consider giving the repo a star if you like this application. From 10c7ab7be15d2c9afc6f6f41600132d8e84aec66 Mon Sep 17 00:00:00 2001 From: hrzlgnm Date: Wed, 7 Aug 2024 23:07:31 +0200 Subject: [PATCH 2/2] Upref and codespell --- .codespellrc | 2 +- src-tauri/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.codespellrc b/.codespellrc index 8c217e7..015a949 100644 --- a/.codespellrc +++ b/.codespellrc @@ -2,6 +2,6 @@ builtin = clear,rare,en-GB_to_en-US,names,informal,code check-filenames = src/*.rs src-tauri/src/*.rs ignore-words = .codespellignore -skip = */.git,*/target,*.lock +skip = */.git,*/target,*.lock,./src-tauri/gen/schemas/*.json quiet-level = 2 diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d694b41..05527c6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" tauri-build = { version = "1.5.3", features = [] } [dependencies] -mdns-sd = { git = "https://github.com/hrzlgnm/mdns-sd.git", branch = "track-already-queried-subnets-by-interface-name", default-features = false, features = [ +mdns-sd = { git = "https://github.com/keepsimple1/mdns-sd.git", branch = "main", default-features = false, features = [ "async", "log", ] }