big random

This commit is contained in:
abbie 2022-04-12 22:05:15 +01:00
parent cbf60f5a05
commit 51c5444917
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87
5 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "packeteer" name = "packeteer"
description = "An attempt at a Rust library that can be used to assist in programmatically analysing, serving and handling received protocol packets." 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" edition = "2021"
authors = ["Celeste <colean@colean.cc>"] authors = ["Celeste <colean@colean.cc>"]
license = "MPL-2.0" license = "MPL-2.0"

1
README
View file

@ -7,6 +7,7 @@ Supported protocols
* HTTP/1.x * HTTP/1.x
* Gemini * Gemini
* FTP * FTP
* DNS
What Packeteer is not What Packeteer is not
------------------------- -------------------------

View file

@ -6,6 +6,7 @@
<li>HTTP/1.x</li> <li>HTTP/1.x</li>
<li>Gemini</li> <li>Gemini</li>
<li>FTP</li> <li>FTP</li>
<li>DNS</li>
</ul> </ul>
<h2>What Packeteer is not</h2> <h2>What Packeteer is not</h2>

View file

@ -5,6 +5,7 @@ Packeteer is a library that can handle structurally organising protocol packets
* HTTP/1.x * HTTP/1.x
* Gemini * Gemini
* FTP * FTP
* DNS
## What Packeteer is _not_ ## What Packeteer is _not_
* a TCP/UDP stream handling library * a TCP/UDP stream handling library

View file

@ -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: //! 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 //! ```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. //! 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.