feat(cli): can now be published

This works as the API version is now explicitly specified,
allowing cargo-publish to work as usual.
This commit is contained in:
Sebastian Thiel
2016-09-11 13:13:09 +02:00
parent c4c49015f5
commit 91a657b8cf
5 changed files with 14 additions and 3 deletions

View File

@@ -59,7 +59,14 @@ directories:
mako_src: src/mako
# The subdirectory to contain documentation from all APIs and related programs
doc_subdir: doc
# This somewhat intricate setup allows the CLI to access certain cargo-API values,
# without having us duplicate them.
cargo_api: &cargo_api
build_version: "0.1.15"
cargo:
# This means that the API must not specify the shared variables from cargo_api
# anymore
<<: *cargo_api
repo_base_url: https://github.com/Byron/google-apis-rs
doc_base_url: http://byron.github.io/google-apis-rs
authors:
@@ -76,3 +83,5 @@ copyright:
years: '2015-2016'
authors:
- 'Sebastian Thiel'