We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab14bf6 commit 141f7edCopy full SHA for 141f7ed
Cargo.toml
@@ -24,3 +24,6 @@ log = "0.3.8"
24
libc = "0.2.24"
25
ws2_32-sys = "0.2.1"
26
winapi = "0.2.5"
27
+
28
+[dev-dependencies]
29
+version-sync = "0.5"
src/lib.rs
@@ -1,3 +1,4 @@
1
+#![doc(html_root_url = "https://docs.rs/async-dnssd/0.4.0")]
2
//! # Asynchronous wrapper for DNS-SD C libraries
3
//!
4
//! Interesting entry points:
tests/version-numbers.rs
@@ -0,0 +1,12 @@
+#[macro_use]
+extern crate version_sync;
+#[test]
5
+fn test_readme_deps() {
6
+ assert_markdown_deps_updated!("README.md");
7
+}
8
9
10
+fn test_html_root_url() {
11
+ assert_html_root_url_updated!("src/lib.rs");
12
0 commit comments