Prepare for v0.99.0

pull/45/head^2
Stjepan Glavina 5 years ago
parent 56cd64520d
commit f4ff5443c8

@ -0,0 +1,3 @@
# Version 0.99.0
- Initial beta release

@ -1,7 +1,10 @@
[package]
name = "async-std"
version = "0.1.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
version = "0.99.0"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"The async-std Project Developers",
]
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/async-rs/async-std"
@ -19,7 +22,7 @@ rustdoc-args = ["--features docs"]
docs = []
[dependencies]
async-task = { git = "ssh://git@github.com/async-rs/async-task.git" }
async-task = "1.0.0"
cfg-if = "0.1.9"
crossbeam-channel = "0.3.9"
futures-preview = "0.3.0-alpha.17"

@ -1,13 +1,13 @@
# Async version of Rust's standard library
[![Build Status](https://travis-ci.com/async-rs/async-std.svg?branch=master)](https://travis-ci.org/async-rs/async-std)
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](
https://github.com/async-rs/async-std)
[![Build Status](https://travis-ci.com/async-rs/async-std.svg?branch=master)](https://travis-ci.com/async-rs/async-std)
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](https://github.com/async-rs/async-std)
[![Cargo](https://img.shields.io/crates/v/async-std.svg)](https://crates.io/crates/async-std)
[![Documentation](https://docs.rs/async-std/badge.svg)](https://docs.rs/async-std)
[![chat](https://img.shields.io/discord/598880689856970762.svg?logo=discord)](https://discord.gg/JvZeVNe)
This crate provides an async version of [`std`]. It provides all the interfaces you are used to, but in an async version and ready for Rust's `async/await`-syntax.
This crate provides an async version of [`std`]. It provides all the interfaces you
are used to, but in an async version and ready for Rust's `async`/`await` syntax.
[`std`]: https://doc.rust-lang.org/std/index.html
@ -90,10 +90,10 @@ fn main() {
Clone the repo:
```
git clone git@github.com:stjepang/async-std.git && cd async-std
git clone git@github.com:async-rs/async-std.git && cd async-std
```
Read the docs:
Generate docs:
```
cargo doc --features docs.rs --open

@ -24,6 +24,7 @@ use crate::task::{Context, Poll};
/// let stdin = io::stdin();
/// let mut line = String::new();
/// let n = stdin.read_line(&mut line).await?;
/// Ok(())
/// })
/// .await?;
/// #

Loading…
Cancel
Save