Skip to content

Commit

Permalink
fix(version-up): v0.1.5
Browse files Browse the repository at this point in the history
* fix documentation link in Cargo.toml
* adjust to latest hyper. It's not even out yet, but people
  can't build the APIs anyway.
  • Loading branch information
Byron committed Apr 8, 2015
1 parent 191e822 commit a399488
Show file tree
Hide file tree
Showing 313 changed files with 24,317 additions and 24,707 deletions.
2 changes: 1 addition & 1 deletion etc/api/type-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ make:
- source: lib.rs
output_dir: src
cargo:
build_version: "0.1.4"
build_version: "0.1.5"
keywords: [protocol, web, api]
dependencies:
- url = "*"
Expand Down
4 changes: 2 additions & 2 deletions gen/adexchangebuyer1d3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
[package]

name = "google-adexchangebuyer1d3"
version = "0.1.4+20150323"
version = "0.1.5+20150323"
authors = ["Sebastian Thiel <byronimo@gmail>"]
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"
homepage = "https://developers.google.com/ad-exchange/buyer-rest"
documentation = "http://byron.github.io/google-apis-rs/google-adexchangebuyer1d3"
documentation = "http://byron.github.io/google-apis-rs/google_adexchangebuyer1d3"
license = "MIT"
keywords = ["adexchangebuyer", "google", "protocol", "web", "api"]

Expand Down
2 changes: 1 addition & 1 deletion gen/adexchangebuyer1d3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DO NOT EDIT !
-->
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.4+20150323*, where *20150323* is the exact revision of the *adexchangebuyer:v1.3* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.4*.
This documentation was generated from *Ad Exchange Buyer* crate version *0.1.5+20150323*, where *20150323* is the exact revision of the *adexchangebuyer:v1.3* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.5*.

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).
Expand Down
9 changes: 4 additions & 5 deletions gen/adexchangebuyer1d3/src/cmn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,8 @@ impl HeaderFormat for RangeResponseHeader {
}

/// A utility type to perform a resumable upload from start to end.
pub struct ResumableUploadHelper<'a, NC: 'a, A: 'a> {
pub client: &'a mut hyper::client::Client<NC>,
pub struct ResumableUploadHelper<'a, A: 'a> {
pub client: &'a mut hyper::client::Client,
pub delegate: &'a mut Delegate,
pub start_at: Option<u64>,
pub auth: &'a mut A,
Expand All @@ -496,9 +496,8 @@ pub struct ResumableUploadHelper<'a, NC: 'a, A: 'a> {
pub content_length: u64
}

impl<'a, NC, A> ResumableUploadHelper<'a, NC, A>
where NC: hyper::net::NetworkConnector,
A: oauth2::GetToken {
impl<'a, A> ResumableUploadHelper<'a, A>
where A: oauth2::GetToken {

fn query_transfer_status(&mut self) -> std::result::Result<u64, hyper::HttpResult<hyper::client::Response>> {
loop {
Expand Down
Loading

0 comments on commit a399488

Please sign in to comment.