From 1825e0caebb16bf88346e4f213527f5bbed6cf2a Mon Sep 17 00:00:00 2001 From: Celeste Date: Sat, 12 Mar 2022 20:53:17 +0000 Subject: [PATCH] mistake in docs! --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d1b176b..702d014 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.2.0" +version = "0.2.1" edition = "2021" authors = ["Celeste "] license = "LGPL-3.0-or-later" diff --git a/src/lib.rs b/src/lib.rs index 36b225a..2425f62 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.1", features = ["http1"] } +//! packeteer = { version = "0.2", 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.