Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): Fix typo in readme #196

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
Expand Up @@ -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

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- [Where EXE?](#where-exe)
- [github releases](#github-releases)
- [winget](#winget)
- [Acknowledgements](#acknowledgements)
- [Acknowledgments](#acknowledgments)
<!--toc:end-->

This app allows for browsing of services using mDNS
Expand All @@ -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.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
Expand Down