Skip to content

Commit e3599d3

Browse files
committed
Add additional metadata to Cargo.toml and README.md.
1 parent 64e095a commit e3599d3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ readme = "README.md"
88
license = "MIT"
99
repository = "https://github.com/4lDO2/tcp-channel"
1010
keywords = ["spsc", "channel"]
11+
documentation = "https://docs.rs/tcp-channel"
12+
categories = ["network-programming"]
1113

1214
[dependencies]
1315
bincode = "1.1.2"

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# tcp-channel
22

3+
[![Crates.io](http://meritbadge.herokuapp.com/tcp-channel)](https://crates.io/crates/tcp-channel)
4+
[![Docs.rs](https://docs.rs/tcp-channel/badge.svg)](https://docs.rs/tcp-channel)
35
[![Build Status](https://travis-ci.org/4lDO2/tcp-channel.svg?branch=master)](https://travis-ci.org/4lDO2/tcp-channel)
46

5-
SPSC channels in Rust, transmitted through anything that implements `Read`.
7+
SPSC channels in Rust, transmitted through anything that implements `Read` and `Write`.
68
It uses `bincode` and `serde` for serialization and deserialization.

0 commit comments

Comments
 (0)