mirror of
https://gitee.com/openharmony/third_party_rust_tokio
synced 2025-02-18 14:08:06 +00:00
Prepare for tokio 0.1 release (#119)
This commit is contained in:
parent
c225b46b18
commit
23bc9d20d3
@ -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).
|
||||
|
@ -7,16 +7,17 @@ name = "tokio"
|
||||
# - Create "v0.1.x" git tag.
|
||||
version = "0.1.0"
|
||||
|
||||
authors = ["Tokio Authors <authors@tokio.rs>"]
|
||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/tokio-rs/tokio"
|
||||
homepage = "https://tokio.rs"
|
||||
documentation = "https://docs.rs/tokio/0.1"
|
||||
description = """
|
||||
Core I/O and event loop primitives for asynchronous I/O in Rust. Foundation for
|
||||
the rest of the tokio crates.
|
||||
An event-driven, non-blocking I/O platform for writing asynchronous I/O
|
||||
backed applications.
|
||||
"""
|
||||
categories = ["asynchronous"]
|
||||
keywords = ["io", "async", "non-blocking", "futures"]
|
||||
|
||||
[workspace]
|
||||
|
||||
@ -27,7 +28,7 @@ members = [
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "tokio-rs/tokio" }
|
||||
appveyor = { repository = "alexcrichton/tokio" }
|
||||
appveyor = { repository = "carllerche/tokio" }
|
||||
|
||||
[dependencies]
|
||||
bytes = "0.4"
|
||||
|
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2016 Alex Crichton
|
||||
Copyright (c) 2018 Carl Lerche
|
||||
|
||||
Permission is hereby granted, free of charge, to any
|
||||
person obtaining a copy of this software and associated
|
||||
|
24
README.md
24
README.md
@ -1,20 +1,24 @@
|
||||
# tokio
|
||||
# Tokio
|
||||
|
||||
A work-in-progress rearchitecting of the [tokio-core] crate in line with
|
||||
[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
|
||||
A platform for writing fast networking code with Rust.
|
||||
|
||||
[![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)
|
||||
|
||||
[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
|
||||
it progresses.
|
||||
Tokio is an event-driven, non-blocking I/O platform for writing asynchronous I/O
|
||||
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
|
||||
|
||||
|
@ -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)
|
||||
|
||||
* Use `FrameTooBig` as length delimited error type (#70).
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "tokio-io"
|
||||
version = "0.1.4"
|
||||
authors = ["Alex Crichton <alex@alexcrichton.com>", "Carl Lerche <me@carllerche.com>"]
|
||||
version = "0.1.5"
|
||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||
license = "MIT/Apache-2.0"
|
||||
repository = "https://github.com/tokio-rs/tokio-io"
|
||||
homepage = "https://tokio.rs"
|
||||
|
Loading…
x
Reference in New Issue
Block a user