Update repo URLs (#370)
This commit is contained in:
committed by
Sean McArthur
parent
8974fcd9ff
commit
e13645c091
@@ -53,7 +53,7 @@ deploy:
|
|||||||
local_dir: target/doc
|
local_dir: target/doc
|
||||||
on:
|
on:
|
||||||
branch: master
|
branch: master
|
||||||
repo: carllerche/h2
|
repo: hyperium/h2
|
||||||
rust: stable
|
rust: stable
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -80,5 +80,5 @@ Describe the modifications you've made.
|
|||||||
Describe the testing you've done to validate your change. Performance-related
|
Describe the testing you've done to validate your change. Performance-related
|
||||||
changes should include before- and after- benchmark results.
|
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
|
[gitter]: https://gitter.im/tokio-rs/tokio
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
A Tokio aware, HTTP/2.0 client & server implementation for Rust.
|
A Tokio aware, HTTP/2.0 client & server implementation for Rust.
|
||||||
|
|
||||||
[](https://travis-ci.org/carllerche/h2)
|
[](https://travis-ci.org/hyperium/h2)
|
||||||
[](https://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
[](https://crates.io/crates/h2)
|
[](https://crates.io/crates/h2)
|
||||||
[][dox]
|
[][dox]
|
||||||
|
|||||||
@@ -577,7 +577,7 @@ where
|
|||||||
// prioritize layer. If prioritization reorders new streams, this
|
// prioritize layer. If prioritization reorders new streams, this
|
||||||
// implicitly closes the earlier stream IDs.
|
// implicitly closes the earlier stream IDs.
|
||||||
//
|
//
|
||||||
// See: carllerche/h2#11
|
// See: hyperium/h2#11
|
||||||
let mut me = self.inner.lock().unwrap();
|
let mut me = self.inner.lock().unwrap();
|
||||||
let me = &mut *me;
|
let me = &mut *me;
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
//! # Shutting down the server
|
//! # Shutting down the server
|
||||||
//!
|
//!
|
||||||
//! Graceful shutdown of the server is [not yet
|
//! 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
|
//! # Example
|
||||||
//!
|
//!
|
||||||
@@ -271,7 +271,7 @@ pub struct Builder {
|
|||||||
///
|
///
|
||||||
/// It will also be used to initiate push promises linked with the associated
|
/// It will also be used to initiate push promises linked with the associated
|
||||||
/// stream. This is [not yet
|
/// 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
|
/// If the `SendResponse` instance is dropped without sending a response, then
|
||||||
/// the HTTP/2.0 stream will be reset.
|
/// the HTTP/2.0 stream will be reset.
|
||||||
|
|||||||
@@ -1272,7 +1272,7 @@ fn server_target_window_size() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn recv_settings_increase_window_size_after_using_some() {
|
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 _ = ::env_logger::try_init();
|
||||||
let (io, srv) = mock::new();
|
let (io, srv) = mock::new();
|
||||||
|
|
||||||
@@ -1317,7 +1317,7 @@ fn recv_settings_increase_window_size_after_using_some() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn reserve_capacity_after_peer_closes() {
|
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 _ = ::env_logger::try_init();
|
||||||
let (io, srv) = mock::new();
|
let (io, srv) = mock::new();
|
||||||
|
|
||||||
|
|||||||
@@ -1089,7 +1089,7 @@ fn send_err_with_buffered_data() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn srv_window_update_on_lower_stream_id() {
|
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 _ = ::env_logger::try_init();
|
||||||
let (io, srv) = mock::new();
|
let (io, srv) = mock::new();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user