Files
google-apis-rs/etc/api/type-cli.yaml
Kyle Gentle 08552c4364 Restructure src dir
Make a few changes in the toplevel src dir to help separate
templates from code. Specifically, we rename `src/mako` to
`src/generator`, and nest the mako templates inside a
`src/generator/templates` dir.

This isolates most Python code into the `src/generator/lib` dir.
2022-08-18 21:23:55 -04:00

36 lines
949 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: "generator.lib.cli"
make:
id: cli
target_name: CLIs
target_suffix: -cli
aggregated_target_suffix: -cli
depends_on_suffix: ""
depends_on_id: "api"
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:
keywords: [cli]
is_executable: YES
doc_base_url: http://byron.github.io/google-apis-rs
dependencies:
- strsim = "^0.5"
- clap = "^2.0"
- http = "^0.2"
- hyper = { version = "0.14", features = ["full"] }
- tokio = { version = "^ 1.0", features = ["full"] }
- tower-service = "^0.3.1"