mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-30 08:08:50 +01:00
That way, the makefile doesn't need to know that much anymore, and gets simpler/less verbose. \# Also * Added filters for rust doc string * fixed .PHONY
30 lines
919 B
YAML
30 lines
919 B
YAML
# Contains values shared among all API implementations
|
|
directories:
|
|
# directory under which all generated sources should reside
|
|
output: lib
|
|
# how to get from `output` back to common library
|
|
common: ../
|
|
# where are all the API meta files
|
|
api_base: etc/api
|
|
# all mako source files
|
|
mako_src: src/mako
|
|
api:
|
|
list:
|
|
- name: youtube
|
|
version: v3
|
|
base_path: "etc/api"
|
|
templates:
|
|
# all output directories are relative to the one set for the respective API
|
|
- source: README.md
|
|
- source: cargo.toml
|
|
# output_dir: optional - not there if unset
|
|
cargo:
|
|
build_version: "0.0.1"
|
|
repo_base_url: https://github.com/Byron/google-apis-rs
|
|
doc_base_url: http://byron.github.io/google-apis-rs
|
|
authors:
|
|
- Sebastian Thiel <byronimo@gmail>
|
|
keywords: [google, protocol, web, api]
|
|
# All APIs should live in the same repository
|
|
repository_url: https://github.com/Byron/google-apis-rs
|