From 51c54449170b41d628f01e1e53010eccf9f46b93 Mon Sep 17 00:00:00 2001 From: Celeste Date: Tue, 12 Apr 2022 22:05:15 +0100 Subject: [PATCH] big random --- Cargo.toml | 2 +- README | 1 + README.html | 1 + README.md | 1 + src/lib.rs | 2 +- 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8f7414d..88e5e3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "packeteer" description = "An attempt at a Rust library that can be used to assist in programmatically analysing, serving and handling received protocol packets." -version = "0.4.0" +version = "0.4.1" edition = "2021" authors = ["Celeste "] license = "MPL-2.0" diff --git a/README b/README index d451be9..fa3778d 100644 --- a/README +++ b/README @@ -7,6 +7,7 @@ Supported protocols * HTTP/1.x * Gemini * FTP +* DNS What Packeteer is not ------------------------- diff --git a/README.html b/README.html index 46b1a53..69c9dc2 100644 --- a/README.html +++ b/README.html @@ -6,6 +6,7 @@
  • HTTP/1.x
  • Gemini
  • FTP
  • +
  • DNS
  • What Packeteer is not

    diff --git a/README.md b/README.md index a6f1dcf..ba4812f 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ Packeteer is a library that can handle structurally organising protocol packets * HTTP/1.x * Gemini * FTP +* DNS ## What Packeteer is _not_ * a TCP/UDP stream handling library diff --git a/src/lib.rs b/src/lib.rs index 63120f1..9e5a881 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! To include packeteer in your project, you'll need to enable the modules you need. For example, if you required the usage of the http1 module, you would add the following to your `Cargo.toml` file: //! //! ```toml -//! packeteer = { version = "0.3", features = ["http1"] } +//! packeteer = { version = "0.4", features = ["http1"] } //! ``` //! //! It's safe to use ambigious version numbers that exclude the bugfix number as breaking changes or new features will result in an increment of the minor version number, or possibly major version number in the future.