Skip to content

Commit 7454509

Browse files
committed
Improve docs
1 parent 163d94f commit 7454509

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-io-converse"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Can conduct a conversation over any AsyncRead or AsyncWrite type with serde compatible types"

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# async-io-converse
1+
# async-io-converse [![Build Status]][actions] [![Latest Version]][crates.io]
22

3-
![ci status](https://github.com/Xaeroxe/async-io-converse/actions/workflows/rust.yml/badge.svg)
3+
[Build Status]: https://img.shields.io/github/actions/workflow/status/Xaeroxe/async-io-converse/rust.yml?branch=main
4+
[actions]: https://github.com/Xaeroxe/async-io-converse/actions?query=branch%3Amain
5+
[Latest Version]: https://img.shields.io/crates/v/async-io-converse.svg
6+
[crates.io]: https://crates.io/crates/async-io-converse
7+
8+
[Documentation](https://docs.rs/async-io-converse)
49

510
A wrapper over the [`async-io-typed`](https://github.com/Xaeroxe/async-io-typed) crate which allows
611
[`serde`](https://github.com/serde-rs/serde) compatible types to be sent over any duplex connection that has types that implement

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//#![doc = include_str!("../README.md")]
1+
#![doc = include_str!("../README.md")]
22

33
use async_io_typed::{AsyncReadTyped, AsyncWriteTyped};
44
use futures_io::{AsyncRead, AsyncWrite};

0 commit comments

Comments
 (0)