mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-29 15:49:45 +01:00
* If `--debug` is set, we will output all server communication to stderr. That way, we can compare our requests to what is expected by ush based on official docs. * `discovery` now doesn't use the API key anymore - this is specified using a custom override. Nice, we are totally ready to test and fix all API features. Related to #70
35 lines
825 B
YAML
35 lines
825 B
YAML
mkdocs:
|
|
## A directory to bring us from the mkdocs invocation directory to the gen-root
|
|
gen_root_dir: ..
|
|
site_dir: build_html
|
|
# if docs_dir changes, remember to update the sources as well.
|
|
docs_dir: docs
|
|
mako:
|
|
post_processor_module: cli
|
|
make:
|
|
id: cli
|
|
target_name: CLIs
|
|
target_suffix: -cli
|
|
aggregated_target_suffix: -cli
|
|
depends_on_suffix: ''
|
|
documentation_engine: mkdocs
|
|
templates:
|
|
- source: ../LICENSE.md
|
|
- source: ../Cargo.toml
|
|
- source: docs/commands.md
|
|
- source: mkdocs.yml
|
|
- source: README.md
|
|
- source: main.rs
|
|
output_dir: src
|
|
cargo:
|
|
build_version: "0.0.1"
|
|
keywords: [cli]
|
|
is_executable: YES
|
|
dependencies:
|
|
- docopt = "*"
|
|
- docopt_macros = "*"
|
|
- rustc-serialize = "*"
|
|
- yup-hyper-mock = "*"
|
|
- serde = ">= 0.3.0"
|
|
- serde_macros = "*"
|