Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtoth committed Oct 22, 2023
1 parent 56cdbf1 commit 3daa8bd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT"
homepage = "https://github.com/andrewtoth/http-serde-ext/"
repository = "https://github.com/andrewtoth/http-serde-ext/"
documentation = "https://docs.rs/http-serde-ext/"
description = "serde support for http crate types Request, Response, Uri, StatusCode, HeaderMap"
description = "serde support for http crate types Request, Response, Uri, StatusCode, HeaderMap, Method, in Option or other collections"
keywords = ["http", "serde", "serialization", "deserialize", "url"]
categories = ["encoding", "decoding", "networking", "web-programming"]
readme = "README.md"
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@ Allows serializing and deserializing the above types wrapped in the following `s
- [`HashMap`](https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html) in the `Value` position
- [`BTreeMap`](https://doc.rust-lang.org/std/collections/struct.BTreeMap.html) in the `Value` position

# Installation

Run the following Cargo command in your project directory:

```bash
cargo add http-serde-ext
```

Or add the following line to your Cargo.toml:

```toml
http-serde-ext = "0.1.1"
```

# Usage

This library is intended to be used with `serde`'s `derive` feature.
Expand Down

0 comments on commit 3daa8bd

Please sign in to comment.