From e13645c0917a9ec59865b59e30b28c067fb2b3d6 Mon Sep 17 00:00:00 2001 From: Alex Touchet Date: Tue, 4 Jun 2019 23:06:13 -0700 Subject: [PATCH] Update repo URLs (#370) --- .travis.yml | 2 +- CONTRIBUTING.md | 2 +- README.md | 2 +- src/proto/streams/streams.rs | 2 +- src/server.rs | 4 ++-- tests/h2-tests/tests/flow_control.rs | 4 ++-- tests/h2-tests/tests/stream_states.rs | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9475be9..c8c19d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,7 +53,7 @@ deploy: local_dir: target/doc on: branch: master - repo: carllerche/h2 + repo: hyperium/h2 rust: stable env: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fa0b263..10e74bf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -80,5 +80,5 @@ Describe the modifications you've made. Describe the testing you've done to validate your change. Performance-related changes should include before- and after- benchmark results. -[issue]: https://github.com/carllerche/h2/issues/new +[issue]: https://github.com/hyperium/h2/issues/new [gitter]: https://gitter.im/tokio-rs/tokio diff --git a/README.md b/README.md index 8a7dcd9..2136d49 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A Tokio aware, HTTP/2.0 client & server implementation for Rust. -[![Build Status](https://travis-ci.org/carllerche/h2.svg?branch=master)](https://travis-ci.org/carllerche/h2) +[![Build Status](https://travis-ci.org/hyperium/h2.svg?branch=master)](https://travis-ci.org/hyperium/h2) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![Crates.io](https://img.shields.io/crates/v/h2.svg)](https://crates.io/crates/h2) [![Documentation](https://docs.rs/h2/badge.svg)][dox] diff --git a/src/proto/streams/streams.rs b/src/proto/streams/streams.rs index 0c58ecb..bc47b38 100644 --- a/src/proto/streams/streams.rs +++ b/src/proto/streams/streams.rs @@ -577,7 +577,7 @@ where // prioritize layer. If prioritization reorders new streams, this // implicitly closes the earlier stream IDs. // - // See: carllerche/h2#11 + // See: hyperium/h2#11 let mut me = self.inner.lock().unwrap(); let me = &mut *me; diff --git a/src/server.rs b/src/server.rs index 1b30d94..d2535d5 100644 --- a/src/server.rs +++ b/src/server.rs @@ -55,7 +55,7 @@ //! # Shutting down the server //! //! Graceful shutdown of the server is [not yet -//! implemented](https://github.com/carllerche/h2/issues/69). +//! implemented](https://github.com/hyperium/h2/issues/69). //! //! # Example //! @@ -271,7 +271,7 @@ pub struct Builder { /// /// It will also be used to initiate push promises linked with the associated /// stream. This is [not yet -/// implemented](https://github.com/carllerche/h2/issues/185). +/// implemented](https://github.com/hyperium/h2/issues/185). /// /// If the `SendResponse` instance is dropped without sending a response, then /// the HTTP/2.0 stream will be reset. diff --git a/tests/h2-tests/tests/flow_control.rs b/tests/h2-tests/tests/flow_control.rs index 1a5c7ef..e270caa 100644 --- a/tests/h2-tests/tests/flow_control.rs +++ b/tests/h2-tests/tests/flow_control.rs @@ -1272,7 +1272,7 @@ fn server_target_window_size() { #[test] fn recv_settings_increase_window_size_after_using_some() { - // See https://github.com/carllerche/h2/issues/208 + // See https://github.com/hyperium/h2/issues/208 let _ = ::env_logger::try_init(); let (io, srv) = mock::new(); @@ -1317,7 +1317,7 @@ fn recv_settings_increase_window_size_after_using_some() { #[test] fn reserve_capacity_after_peer_closes() { - // See https://github.com/carllerche/h2/issues/300 + // See https://github.com/hyperium/h2/issues/300 let _ = ::env_logger::try_init(); let (io, srv) = mock::new(); diff --git a/tests/h2-tests/tests/stream_states.rs b/tests/h2-tests/tests/stream_states.rs index 583b005..f22f101 100644 --- a/tests/h2-tests/tests/stream_states.rs +++ b/tests/h2-tests/tests/stream_states.rs @@ -1089,7 +1089,7 @@ fn send_err_with_buffered_data() { #[test] fn srv_window_update_on_lower_stream_id() { - // See https://github.com/carllerche/h2/issues/208 + // See https://github.com/hyperium/h2/issues/208 let _ = ::env_logger::try_init(); let (io, srv) = mock::new();