mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-19 01:40:05 +01:00
However, for some reason, the `Serialize/Deserialize` macros don't work for me, even though they work just fine in the respective tests of the serge crate. What am I possibly doing wrong ?
25 lines
734 B
Mako
25 lines
734 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.crate_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 = "*"
|
|
serde = "*"
|
|
serde_macros = "*"
|
|
yup-oauth2 = "*"
|
|
|