Skip to content

Commit

Permalink
fix cargo links, bump to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
avitex committed Mar 30, 2020
1 parent 19609a5 commit a209367
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Documentation hosted on [docs.rs](https://docs.rs/dnscat).

```toml
dnscat = "0.1.0"
dnscat = "0.1"
```

## Client CLI Usage
Expand Down
6 changes: 3 additions & 3 deletions dnscat-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "dnscat-client"
version = "0.1.0"
version = "0.1.1"
authors = ["avitex <[email protected]>"]
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]
Expand Down
7 changes: 4 additions & 3 deletions dnscat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "dnscat"
version = "0.1.0"
version = "0.1.1"
authors = ["avitex <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion dnscat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
Documentation hosted on [docs.rs](https://docs.rs/dnscat).

```toml
dnscat = "0.1.0"
dnscat = "0.1"
```
4 changes: 2 additions & 2 deletions dnscat/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit a209367

Please sign in to comment.