big random
This commit is contained in:
parent
cbf60f5a05
commit
51c5444917
5 changed files with 5 additions and 2 deletions
|
@ -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 <colean@colean.cc>"]
|
||||
license = "MPL-2.0"
|
||||
|
|
1
README
1
README
|
@ -7,6 +7,7 @@ Supported protocols
|
|||
* HTTP/1.x
|
||||
* Gemini
|
||||
* FTP
|
||||
* DNS
|
||||
|
||||
What Packeteer is not
|
||||
-------------------------
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<li>HTTP/1.x</li>
|
||||
<li>Gemini</li>
|
||||
<li>FTP</li>
|
||||
<li>DNS</li>
|
||||
</ul>
|
||||
|
||||
<h2>What Packeteer is not</h2>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue