mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-20 18:21:37 +01:00
fix(publish): v0.1.3
* keywords are no longer than 20 characters, which is a restriction cargo imposes * don't use 'homepage' link in cargo.toml unless the homepage is non-empty * Added all publish-results to mark the respective crate version Related to #46
This commit is contained in:
@@ -10,12 +10,12 @@ version = "${util.crate_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.github_source_root_url()}"
|
||||
% if documentationLink is not UNDEFINED:
|
||||
% if documentationLink is not UNDEFINED and documentationLink:
|
||||
homepage = "${documentationLink}"
|
||||
% endif
|
||||
documentation = "${cargo.doc_base_url}/${util.crate_name()}"
|
||||
license = "${copyright.license_abbrev}"
|
||||
keywords = ["${name}", ${", ".join(estr(cargo.keywords))}]
|
||||
keywords = ["${name[:20]}", ${", ".join(estr(cargo.keywords))}]
|
||||
|
||||
[dependencies]
|
||||
hyper = "*"
|
||||
|
||||
Reference in New Issue
Block a user