forked from mirror/async-std
Prepare for v0.99.0
This commit is contained in:
parent
56cd64520d
commit
f4ff5443c8
4 changed files with 16 additions and 9 deletions
3
CHANGELOG.md
Normal file
3
CHANGELOG.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Version 0.99.0
|
||||||
|
|
||||||
|
- Initial beta release
|
|
@ -1,7 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "async-std"
|
name = "async-std"
|
||||||
version = "0.1.0"
|
version = "0.99.0"
|
||||||
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
|
authors = [
|
||||||
|
"Stjepan Glavina <stjepang@gmail.com>",
|
||||||
|
"The async-std Project Developers",
|
||||||
|
]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0/MIT"
|
license = "Apache-2.0/MIT"
|
||||||
repository = "https://github.com/async-rs/async-std"
|
repository = "https://github.com/async-rs/async-std"
|
||||||
|
@ -19,7 +22,7 @@ rustdoc-args = ["--features docs"]
|
||||||
docs = []
|
docs = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-task = { git = "ssh://git@github.com/async-rs/async-task.git" }
|
async-task = "1.0.0"
|
||||||
cfg-if = "0.1.9"
|
cfg-if = "0.1.9"
|
||||||
crossbeam-channel = "0.3.9"
|
crossbeam-channel = "0.3.9"
|
||||||
futures-preview = "0.3.0-alpha.17"
|
futures-preview = "0.3.0-alpha.17"
|
||||||
|
|
12
README.md
12
README.md
|
@ -1,13 +1,13 @@
|
||||||
# Async version of Rust's standard library
|
# Async version of Rust's standard library
|
||||||
|
|
||||||
[](https://travis-ci.org/async-rs/async-std)
|
[](https://travis-ci.com/async-rs/async-std)
|
||||||
[](
|
[](https://github.com/async-rs/async-std)
|
||||||
https://github.com/async-rs/async-std)
|
|
||||||
[](https://crates.io/crates/async-std)
|
[](https://crates.io/crates/async-std)
|
||||||
[](https://docs.rs/async-std)
|
[](https://docs.rs/async-std)
|
||||||
[](https://discord.gg/JvZeVNe)
|
[](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
|
[`std`]: https://doc.rust-lang.org/std/index.html
|
||||||
|
|
||||||
|
@ -90,10 +90,10 @@ fn main() {
|
||||||
Clone the repo:
|
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
|
cargo doc --features docs.rs --open
|
||||||
|
|
|
@ -24,6 +24,7 @@ use crate::task::{Context, Poll};
|
||||||
/// let stdin = io::stdin();
|
/// let stdin = io::stdin();
|
||||||
/// let mut line = String::new();
|
/// let mut line = String::new();
|
||||||
/// let n = stdin.read_line(&mut line).await?;
|
/// let n = stdin.read_line(&mut line).await?;
|
||||||
|
/// Ok(())
|
||||||
/// })
|
/// })
|
||||||
/// .await?;
|
/// .await?;
|
||||||
/// #
|
/// #
|
||||||
|
|
Loading…
Reference in a new issue