Files
google-apis-rs/src/mako/cargo.toml.mako
Sebastian Thiel aabed38581 feat(doit): query string setup
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 ... .
2015-03-09 17:29:44 +01:00

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 = "*"