chore(versionup): support for latest hyper

This commit is contained in:
Sebastian Thiel
2015-12-06 17:51:06 +01:00
parent f0f4df45c3
commit e3f4fcadad
577 changed files with 1345 additions and 577 deletions

View File

@@ -25,7 +25,7 @@ make:
- source: build.rs - source: build.rs
output_dir: src output_dir: src
cargo: cargo:
build_version: "0.1.9" build_version: "0.1.10"
build_script: src/build.rs build_script: src/build.rs
keywords: [protocol, web, api] keywords: [protocol, web, api]
dependencies: dependencies:

View File

@@ -4,7 +4,7 @@
[package] [package]
name = "google-adexchangebuyer1d3" name = "google-adexchangebuyer1d3"
version = "0.1.9+20150909" version = "0.1.10+20150909"
authors = ["Sebastian Thiel <byronimo@gmail.com>"] authors = ["Sebastian Thiel <byronimo@gmail.com>"]
description = "A complete library to interact with Ad Exchange Buyer (protocol v1.3)" description = "A complete library to interact with Ad Exchange Buyer (protocol v1.3)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/adexchangebuyer1d3" repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/adexchangebuyer1d3"
@@ -16,7 +16,7 @@ build = "src/build.rs"
[dependencies] [dependencies]
hyper = ">= 0.6.8" hyper = "0.7.0"
mime = "0.1.0" mime = "0.1.0"
serde = ">= 0.6.0" serde = ">= 0.6.0"
serde_json = ">= 0.6.0" serde_json = ">= 0.6.0"

View File

@@ -5,7 +5,7 @@ DO NOT EDIT !
--> -->
The `google-adexchangebuyer1d3` library allows access to all features of the *Google Ad Exchange Buyer* service. The `google-adexchangebuyer1d3` library allows access to all features of the *Google Ad Exchange Buyer* service.
This documentation was generated from *Ad Exchange Buyer* crate version *0.1.9+20150909*, where *20150909* is the exact revision of the *adexchangebuyer:v1.3* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.9*. This documentation was generated from *Ad Exchange Buyer* crate version *0.1.10+20150909*, where *20150909* is the exact revision of the *adexchangebuyer:v1.3* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.10*.
Everything else about the *Ad Exchange Buyer* *v1d3* API can be found at the Everything else about the *Ad Exchange Buyer* *v1d3* API can be found at the
[official documentation site](https://developers.google.com/ad-exchange/buyer-rest). [official documentation site](https://developers.google.com/ad-exchange/buyer-rest).

View File

@@ -114,6 +114,14 @@ impl hyper::net::NetworkStream for DummyNetworkStream {
fn peer_addr(&mut self) -> io::Result<std::net::SocketAddr> { fn peer_addr(&mut self) -> io::Result<std::net::SocketAddr> {
Ok("127.0.0.1:1337".parse().unwrap()) Ok("127.0.0.1:1337".parse().unwrap())
} }
fn set_read_timeout(&self, _dur: Option<std::time::Duration>) -> io::Result<()> {
Ok(())
}
fn set_write_timeout(&self, _dur: Option<std::time::Duration>) -> io::Result<()> {
Ok(())
}
} }

Some files were not shown because too many files have changed in this diff Show More