mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-08 17:36:43 +00:00
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]
|
||||
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"
|
||||
|
|
12
README.md
12
README.md
|
@ -1,13 +1,13 @@
|
|||
# Async version of Rust's standard library
|
||||
|
||||
[](https://travis-ci.org/async-rs/async-std)
|
||||
[](
|
||||
https://github.com/async-rs/async-std)
|
||||
[](https://travis-ci.com/async-rs/async-std)
|
||||
[](https://github.com/async-rs/async-std)
|
||||
[](https://crates.io/crates/async-std)
|
||||
[](https://docs.rs/async-std)
|
||||
[](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…
Reference in a new issue