Skip to content

Commit

Permalink
Update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored and cramertj committed Nov 22, 2019
1 parent 78d974c commit 16135c1
Show file tree
Hide file tree
Showing 20 changed files with 38 additions and 38 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<p align="center">
<img alt="futures-rs" src="https://raw.githubusercontent.com/rust-lang-nursery/futures-rs/gh-pages/assets/images/futures-rs-logo.svg?sanitize=true" width="400">
<img alt="futures-rs" src="https://raw.githubusercontent.com/rust-lang/futures-rs/gh-pages/assets/images/futures-rs-logo.svg?sanitize=true" width="400">
</p>

<p align="center">
Zero-cost asynchronous programming in Rust
</p>

<p align="center">
<a href="https://travis-ci.com/rust-lang-nursery/futures-rs">
<img alt="Build Status" src="https://travis-ci.com/rust-lang-nursery/futures-rs.svg?branch=master">
<a href="https://travis-ci.com/rust-lang/futures-rs">
<img alt="Build Status" src="https://travis-ci.com/rust-lang/futures-rs.svg?branch=master">
</a>

<a href="https://crates.io/crates/futures">
Expand All @@ -23,7 +23,7 @@
<p align="center">
<a href="https://docs.rs/futures/">
Documentation
</a> | <a href="https://rust-lang-nursery.github.io/futures-rs/">
</a> | <a href="https://rust-lang.github.io/futures-rs/">
Website
</a>
</p>
Expand Down
4 changes: 2 additions & 2 deletions examples/functional/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
keywords = ["futures", "async", "future"]
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures/0.3.0"
description = """
An implementation of futures and streams featuring zero allocations,
Expand Down
4 changes: 2 additions & 2 deletions examples/imperative/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
keywords = ["futures", "async", "future"]
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures/0.3.0"
description = """
An implementation of futures and streams featuring zero allocations,
Expand Down
4 changes: 2 additions & 2 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-channel/0.3.0"
description = """
Channels for asynchronous communication using futures-rs.
Expand Down
2 changes: 1 addition & 1 deletion futures-channel/src/oneshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ impl<T> Inner<T> {
// under the hood. If it instead used `Release` / `Acquire` ordering,
// then it would not necessarily synchronize with `inner.complete`
// and deadlock might be possible, as was observed in
// https://github.com/rust-lang-nursery/futures-rs/pull/219.
// https://github.com/rust-lang/futures-rs/pull/219.
self.complete.store(true, SeqCst);

if let Some(mut slot) = self.rx_task.try_lock() {
Expand Down
4 changes: 2 additions & 2 deletions futures-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-core/0.3.0"
description = """
The core traits and types in for the `futures` library.
Expand Down
4 changes: 2 additions & 2 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-executor/0.3.0"
description = """
Executors for asynchronous tasks based on the futures-rs library.
Expand Down
4 changes: 2 additions & 2 deletions futures-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-io/0.3.0"
description = """
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
Expand Down
4 changes: 2 additions & 2 deletions futures-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-macro/0.3.0"
description = """
The futures-rs procedural macro implementations.
Expand Down
4 changes: 2 additions & 2 deletions futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-sink/0.3.0"
description = """
The asynchronous `Sink` trait for the futures-rs library.
Expand Down
6 changes: 3 additions & 3 deletions futures-task/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.18/futures_core"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://rust-lang.github.io/futures-api-docs/0.3.0-alpha.18/futures_core"
description = """
Tools for working with tasks.
"""
Expand Down
4 changes: 2 additions & 2 deletions futures-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Wim Looman <wim@nemo157.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-test/0.3.0"
description = """
Common utilities for testing components built off futures-rs.
Expand Down
2 changes: 1 addition & 1 deletion futures-test/src/task/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// in the redered docs. Is this desirable? If so, should we change the paths here?
//
// Also, there is cross crate links in here. They are not going to work anytime soon. Do we put https links
// in here? to here: https://rust-lang-nursery.github.io/futures-api-docs? The problem is these have a
// in here? to here: https://rust-lang.github.io/futures-api-docs? The problem is these have a
// version hardcoded in the url: 0.3.0-alpha.16 We could link to docs.rs, but currently that says:
// docs.rs failed to build futures-0.3.0-alpha.16 -> ok the reason seems to be that they are on
// 2019-04-17 which does still have futures-api unstable feature, so that should get solved.
Expand Down
4 changes: 2 additions & 2 deletions futures-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2018"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures-util/0.3.0"
description = """
Common utilities and extension traits for the futures-rs library.
Expand Down
2 changes: 1 addition & 1 deletion futures-util/src/stream/stream/chunks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use alloc::vec::Vec;
pub struct Chunks<St: Stream> {
stream: Fuse<St>,
items: Vec<St::Item>,
cap: usize, // https://github.com/rust-lang-nursery/futures-rs/issues/1475
cap: usize, // https://github.com/rust-lang/futures-rs/issues/1475
}

impl<St: Unpin + Stream> Unpin for Chunks<St> {}
Expand Down
2 changes: 1 addition & 1 deletion futures-util/src/stream/try_stream/into_async_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ where
mut self: Pin<&mut Self>,
amount: usize,
) {
// https://github.com/rust-lang-nursery/futures-rs/pull/1556#discussion_r281644295
// https://github.com/rust-lang/futures-rs/pull/1556#discussion_r281644295
if amount == 0 { return }
if let ReadState::Ready { chunk, chunk_start } = &mut self.state {
*chunk_start += amount;
Expand Down
6 changes: 3 additions & 3 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
keywords = ["futures", "async", "future"]
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
repository = "https://github.com/rust-lang/futures-rs"
homepage = "https://rust-lang.github.io/futures-rs"
documentation = "https://docs.rs/futures/0.3.0"
description = """
An implementation of futures and streams featuring zero allocations,
Expand All @@ -16,7 +16,7 @@ composability, and iterator-like interfaces.
categories = ["asynchronous"]

[badges]
travis-ci = { repository = "rust-lang-nursery/futures-rs" }
travis-ci = { repository = "rust-lang/futures-rs" }

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion futures/tests/buffer_unordered.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::sync::mpsc as std_mpsc;
use std::thread;

#[test]
#[ignore] // FIXME: https://github.com/rust-lang-nursery/futures-rs/issues/1790
#[ignore] // FIXME: https://github.com/rust-lang/futures-rs/issues/1790
fn works() {
const N: usize = 4;

Expand Down
2 changes: 1 addition & 1 deletion futures/tests/io_buf_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ impl AsyncSeek for MaybePendingSeek<'_> {
}
}

// https://github.com/rust-lang-nursery/futures-rs/pull/1573#discussion_r281162309
// https://github.com/rust-lang/futures-rs/pull/1573#discussion_r281162309
#[test]
fn maybe_pending_seek() {
let inner: &[u8] = &[5, 6, 7, 0, 1, 2, 3, 4];
Expand Down
4 changes: 2 additions & 2 deletions futures/tests/io_buf_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn buf_writer_inner_flushes() {

#[test]
fn buf_writer_seek() {
// FIXME: when https://github.com/rust-lang-nursery/futures-rs/issues/1510 fixed,
// FIXME: when https://github.com/rust-lang/futures-rs/issues/1510 fixed,
// use `Vec::new` instead of `vec![0; 8]`.
let mut w = BufWriter::with_capacity(3, Cursor::new(vec![0; 8]));
block_on(w.write_all(&[0, 1, 2, 3, 4, 5])).unwrap();
Expand Down Expand Up @@ -222,7 +222,7 @@ impl AsyncSeek for MaybePendingSeek {

#[test]
fn maybe_pending_buf_writer_seek() {
// FIXME: when https://github.com/rust-lang-nursery/futures-rs/issues/1510 fixed,
// FIXME: when https://github.com/rust-lang/futures-rs/issues/1510 fixed,
// use `Vec::new` instead of `vec![0; 8]`.
let mut w = BufWriter::with_capacity(3, MaybePendingSeek::new(vec![0; 8]));
run(w.write_all(&[0, 1, 2, 3, 4, 5])).unwrap();
Expand Down

0 comments on commit 16135c1

Please sign in to comment.