fix(version-up): v0.1.5

* fix documentation link in Cargo.toml
* adjust to latest hyper. It's not even out yet, but people
  can't build the APIs anyway.
This commit is contained in:
Sebastian Thiel
2015-04-08 16:54:50 +02:00
parent 191e822c5a
commit a399488c27
313 changed files with 24317 additions and 24707 deletions

View File

@@ -4,12 +4,12 @@
[package]
name = "google-bigquery2"
version = "0.1.4+20150326"
version = "0.1.5+20150326"
authors = ["Sebastian Thiel <byronimo@gmail>"]
description = "A complete library to interact with bigquery (protocol v2)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/bigquery2"
homepage = "https://developers.google.com/bigquery/docs/overview"
documentation = "http://byron.github.io/google-apis-rs/google-bigquery2"
documentation = "http://byron.github.io/google-apis-rs/google_bigquery2"
license = "MIT"
keywords = ["bigquery", "google", "protocol", "web", "api"]

View File

@@ -5,7 +5,7 @@ DO NOT EDIT !
-->
The `google-bigquery2` library allows access to all features of the *Google bigquery* service.
This documentation was generated from *bigquery* crate version *0.1.4+20150326*, where *20150326* is the exact revision of the *bigquery:v2* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.4*.
This documentation was generated from *bigquery* crate version *0.1.5+20150326*, where *20150326* is the exact revision of the *bigquery:v2* schema built by the [mako](http://www.makotemplates.org/) code generator *v0.1.5*.
Everything else about the *bigquery* *v2* API can be found at the
[official documentation site](https://developers.google.com/bigquery/docs/overview).

View File

@@ -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,
@@ -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 {

File diff suppressed because it is too large Load Diff