chore(json-update): update json and regen all code

This commit is contained in:
Sebastian Thiel
2015-06-26 16:08:25 +02:00
parent 615ac64ec1
commit 7d58d66025
596 changed files with 35453 additions and 5854 deletions

View File

@@ -17,8 +17,8 @@ keywords = ["civicinfo", "google", "cli"]
name = "civicinfo2"
[dependencies]
hyper = ">= 0.5.2"
mime = "0.0.11"
hyper = ">= 0.6.0"
mime = "0.0.12"
serde = ">= 0.4.1"
yup-oauth2 = "*"
strsim = "*"

View File

@@ -90,6 +90,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let mut value = json::value::to_value(&output_schema);
remove_json_null_values(&mut value);
json::to_writer_pretty(&mut ostream, &value).unwrap();
ostream.flush().unwrap();
Ok(())
}
}
@@ -138,6 +139,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let mut value = json::value::to_value(&output_schema);
remove_json_null_values(&mut value);
json::to_writer_pretty(&mut ostream, &value).unwrap();
ostream.flush().unwrap();
Ok(())
}
}
@@ -193,6 +195,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let mut value = json::value::to_value(&output_schema);
remove_json_null_values(&mut value);
json::to_writer_pretty(&mut ostream, &value).unwrap();
ostream.flush().unwrap();
Ok(())
}
}
@@ -254,6 +257,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let mut value = json::value::to_value(&output_schema);
remove_json_null_values(&mut value);
json::to_writer_pretty(&mut ostream, &value).unwrap();
ostream.flush().unwrap();
Ok(())
}
}
@@ -312,6 +316,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let mut value = json::value::to_value(&output_schema);
remove_json_null_values(&mut value);
json::to_writer_pretty(&mut ostream, &value).unwrap();
ostream.flush().unwrap();
Ok(())
}
}
@@ -396,7 +401,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let auth = Authenticator::new( &secret, DefaultAuthenticatorDelegate,
if opt.is_present("debug-auth") {
hyper::Client::with_connector(mock::TeeConnector {
connector: hyper::net::HttpConnector(None)
connector: hyper::net::HttpsConnector::<hyper::net::Openssl>::default()
})
} else {
hyper::Client::new()
@@ -409,7 +414,7 @@ impl<'n, 'a> Engine<'n, 'a> {
let client =
if opt.is_present("debug") {
hyper::Client::with_connector(mock::TeeConnector {
connector: hyper::net::HttpConnector(None)
connector: hyper::net::HttpsConnector::<hyper::net::Openssl>::default()
})
} else {
hyper::Client::new()