mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-29 23:55:52 +01:00
* macro 'alias' was renamed to 'rename' * fixed `cargo test` on main project The latter pointed me to the serde issue, which would have made everything fail when actually used to communicate with google servers.
35 lines
858 B
YAML
35 lines
858 B
YAML
api:
|
|
base_path: "etc/api"
|
|
terms:
|
|
# how to actually do something with the API
|
|
action: doit
|
|
# when a resource is supposed to be uploaded
|
|
upload_action: upload
|
|
properties:
|
|
# additional fields specified by the user
|
|
params: '_additional_params'
|
|
# custom scopes for authentication
|
|
scopes: '_scopes'
|
|
make:
|
|
id: api
|
|
target_name: APIs
|
|
target_suffix: ''
|
|
aggregated_target_suffix: -api
|
|
depends_on_suffix:
|
|
global_targets: Yes
|
|
documentation_engine: rustdoc
|
|
templates:
|
|
# all output directories are relative to the one set for the respective API
|
|
- source: README.md
|
|
- source: ../LICENSE.md
|
|
- source: ../Cargo.toml
|
|
- source: lib.rs
|
|
output_dir: src
|
|
cargo:
|
|
build_version: "0.1.4"
|
|
keywords: [protocol, web, api]
|
|
dependencies:
|
|
- url = "*"
|
|
- serde = ">= 0.3.0"
|
|
- serde_macros = "*"
|