Kesavan Yogeswaran

Results 14 issues of Kesavan Yogeswaran

The codegen performed in the build script returns an error in the docs.rs build environment, as write permissions seem to be locked down. This PR skips the codegen steps in...

docs.rs isn't able to generate crate documentation: https://docs.rs/crate/google-cloud/0.2.1. I can build the docs locally as a workaround with `cargo doc --all-features`. The [failed build logs](https://docs.rs/crate/google-cloud/0.2.1/builds/366129) indicate a "Read-only file system"...

As documented [here](https://developer.amazon.com/en-US/docs/alexa/custom-skills/request-and-response-json-reference.html#card-object), the correct name of the card is "AskForPermissionsConsent."

* Add Geolocation interface based on the definition published [here](https://developer.amazon.com/en-US/docs/alexa/custom-skills/location-services-for-alexa-skills.html#geolocation-interface). * Ran rustfmt.

Link to rustdoc items by name rather than using hard-coded direct links, as recommended by . This should hopefully fix an issue where the generated documentation links to an older...

Have you considered adding support for async requests? I'd be happy to take a stab at a patch if there were interest. I'm imagining the async API's and types would...

#123 added a crate-wide `Error` type and some helper macros to add logs gated by the `log` feature. One _could_ use the new macros everywhere to provide additional context to...

To increase performance with the default settings, default to using multi-threading, specifically one thread per CPU. The user must explicitly opt out if they want single-threaded behavior, the previous default....

For the sake of ergonomics and performance, IMO the default number of threads should be the number of CPU's. In my experience, the cases where single-threaded behavior is required are...

On the tip of master (`ecfa500f36c69afdbe8f6c3de10560c3c64966fb`), building gives the following error: ``` ❯ cargo build warning: no edition set: defaulting to the 2015 edition while 2018 is compatible with `rust-version`...

bug