From a2093679bf4698c6a7059ed9359b6a930c083e0b Mon Sep 17 00:00:00 2001 From: avitex Date: Mon, 30 Mar 2020 19:35:46 +1100 Subject: [PATCH] fix cargo links, bump to v0.1.1 --- README.md | 2 +- dnscat-client/Cargo.toml | 6 +++--- dnscat/Cargo.toml | 7 ++++--- dnscat/README.md | 2 +- dnscat/src/lib.rs | 4 ++-- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0acbb84..687a6f3 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Documentation hosted on [docs.rs](https://docs.rs/dnscat). ```toml -dnscat = "0.1.0" +dnscat = "0.1" ``` ## Client CLI Usage diff --git a/dnscat-client/Cargo.toml b/dnscat-client/Cargo.toml index b454d78..36ede26 100644 --- a/dnscat-client/Cargo.toml +++ b/dnscat-client/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "dnscat-client" -version = "0.1.0" +version = "0.1.1" authors = ["avitex "] edition = "2018" categories = ["network-programming"] description = "Standalone DNSCAT2 client" documentation = "https://docs.rs/dnscat" -homepage = "https://github.com/avitex/dnscat" -repository = "https://github.com/avitex/dnscat" +homepage = "https://github.com/avitex/rust-dnscat" +repository = "https://github.com/avitex/rust-dnscat" license = "MIT" [dependencies] diff --git a/dnscat/Cargo.toml b/dnscat/Cargo.toml index 10c50ff..22bc26b 100644 --- a/dnscat/Cargo.toml +++ b/dnscat/Cargo.toml @@ -1,14 +1,15 @@ [package] name = "dnscat" -version = "0.1.0" +version = "0.1.1" authors = ["avitex "] edition = "2018" categories = ["network-programming"] description = "DNSCAT2 protocol" documentation = "https://docs.rs/dnscat" -homepage = "https://github.com/avitex/dnscat" -repository = "https://github.com/avitex/dnscat" +homepage = "https://github.com/avitex/rust-dnscat" +repository = "https://github.com/avitex/rust-dnscat" license = "MIT" +readme = "README.md" [[bin]] name = "dnscat" diff --git a/dnscat/README.md b/dnscat/README.md index 7e5e455..96c51d9 100644 --- a/dnscat/README.md +++ b/dnscat/README.md @@ -8,5 +8,5 @@ Documentation hosted on [docs.rs](https://docs.rs/dnscat). ```toml -dnscat = "0.1.0" +dnscat = "0.1" ``` diff --git a/dnscat/src/lib.rs b/dnscat/src/lib.rs index e425832..858fc8e 100644 --- a/dnscat/src/lib.rs +++ b/dnscat/src/lib.rs @@ -1,7 +1,7 @@ -#![doc(html_root_url = "https://docs.rs/dnscat/0.1.0")] +#![doc(html_root_url = "https://docs.rs/dnscat/0.1.1")] #![deny( warnings, - // TODO: v0.1.1 + // TODO: v0.1.2 // missing_docs, missing_debug_implementations, intra_doc_link_resolution_failure,