mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
It works for uploads as well as for others. Next up is to setup the head and authentication. It will be as simple as calling and handling `GetToken`, even though I think that there needs to be better support for the scope that is asked for ... .
27 lines
768 B
Mako
27 lines
768 B
Mako
<%! from util import (estr, hash_comment) %>\
|
|
<%namespace name="util" file="lib/util.mako"/>\
|
|
<%block filter="hash_comment">\
|
|
<%util:gen_info source="${self.uri}" />\
|
|
</%block>
|
|
[package]
|
|
|
|
name = "${util.library_name()}"
|
|
version = "${cargo.build_version}"
|
|
authors = [${",\n ".join('"%s"' % a for a in cargo.authors)}]
|
|
description = "A complete library to interact with ${util.canonical_name()} (protocol ${version})"
|
|
repository = "${util.repository_url()}"
|
|
homepage = "${documentationLink}"
|
|
documentation = "${cargo.doc_base_url}"
|
|
license = "${copyright.license_abbrev}"
|
|
keywords = ["${name}", ${", ".join(estr(cargo.keywords))}]
|
|
|
|
[dependencies]
|
|
hyper = "*"
|
|
mime = "*"
|
|
url = "*"
|
|
rustc-serialize = "*"
|
|
yup-oauth2 = "*"
|
|
|
|
[dev-dependencies]
|
|
yup-hyper-mock = "*"
|
|
|