Prepare for tokio 0.1 release (#119)

This commit is contained in:
Carl Lerche
2018-02-07 13:28:29 -08:00
committed by GitHub
parent c225b46b18
commit 23bc9d20d3
6 changed files with 28 additions and 18 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# 0.1.0 (unreleased) # 0.1.0 (February 07, 2018)
* Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3). * Initial crate released based on [RFC](https://github.com/tokio-rs/tokio-rfcs/pull/3).
+5 -4
View File
@@ -7,16 +7,17 @@ name = "tokio"
# - Create "v0.1.x" git tag. # - Create "v0.1.x" git tag.
version = "0.1.0" version = "0.1.0"
authors = ["Tokio Authors <[email protected]>"] authors = ["Carl Lerche <[email protected]>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
repository = "https://github.com/tokio-rs/tokio" repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs" homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio/0.1" documentation = "https://docs.rs/tokio/0.1"
description = """ description = """
Core I/O and event loop primitives for asynchronous I/O in Rust. Foundation for An event-driven, non-blocking I/O platform for writing asynchronous I/O
the rest of the tokio crates. backed applications.
""" """
categories = ["asynchronous"] categories = ["asynchronous"]
keywords = ["io", "async", "non-blocking", "futures"]
[workspace] [workspace]
@@ -27,7 +28,7 @@ members = [
[badges] [badges]
travis-ci = { repository = "tokio-rs/tokio" } travis-ci = { repository = "tokio-rs/tokio" }
appveyor = { repository = "alexcrichton/tokio" } appveyor = { repository = "carllerche/tokio" }
[dependencies] [dependencies]
bytes = "0.4" bytes = "0.4"
+1 -1
View File
@@ -1,4 +1,4 @@
Copyright (c) 2016 Alex Crichton Copyright (c) 2018 Carl Lerche
Permission is hereby granted, free of charge, to any Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated person obtaining a copy of this software and associated
+14 -10
View File
@@ -1,20 +1,24 @@
# tokio # Tokio
A work-in-progress rearchitecting of the [tokio-core] crate in line with A platform for writing fast networking code with Rust.
[tokio-rs/tokio-rfcs#3][rfc]
[tokio-core]: https://github.com/tokio-rs/tokio-core
[rfc]: https://github.com/tokio-rs/tokio-rfcs/pull/3
[![Build Status](https://travis-ci.org/tokio-rs/tokio.svg?branch=new-crate)](https://travis-ci.org/tokio-rs/tokio) [![Build Status](https://travis-ci.org/tokio-rs/tokio.svg?branch=new-crate)](https://travis-ci.org/tokio-rs/tokio)
[![Build status](https://ci.appveyor.com/api/projects/status/uxiinkgipvy6ehrj/branch/new-crate?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio/branch/new-crate) [![Build status](https://ci.appveyor.com/api/projects/status/uxiinkgipvy6ehrj/branch/new-crate?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio/branch/new-crate)
[Documentation](https://tokio-rs.github.io/tokio/tokio) [Website](https://tokio.rs) |
[Guides](https://tokio.rs/docs/getting-started/hello-world/) |
[API Docs](https://docs.rs/tokio)
## Usage ## Overview
This project is a **work in progress**, more information will be added here as Tokio is an event-driven, non-blocking I/O platform for writing asynchronous I/O
it progresses. backed applications. It is used for implementing networking clients and servers.
Tokio uses the [`futures`] crate as a foundation to build on, providing
networking types and other utilities needed for building a production ready
application.
[`futures`]: https://github.com/rust-lang-nursery/futures-rs
# License # License
+5
View File
@@ -1,3 +1,8 @@
# 0.1.5 (February 07, 2018)
* Fix bug in `BytesCodec` and `LinesCodec`.
* Performance improvement to `split`.
# 0.1.4 (November 10, 2017) # 0.1.4 (November 10, 2017)
* Use `FrameTooBig` as length delimited error type (#70). * Use `FrameTooBig` as length delimited error type (#70).
+2 -2
View File
@@ -1,7 +1,7 @@
[package] [package]
name = "tokio-io" name = "tokio-io"
version = "0.1.4" version = "0.1.5"
authors = ["Alex Crichton <[email protected]>", "Carl Lerche <[email protected]>"] authors = ["Carl Lerche <[email protected]>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
repository = "https://github.com/tokio-rs/tokio-io" repository = "https://github.com/tokio-rs/tokio-io"
homepage = "https://tokio.rs" homepage = "https://tokio.rs"