diff --git a/etc/api/type-api.yaml b/etc/api/type-api.yaml index 278b210903..bda1d18df9 100644 --- a/etc/api/type-api.yaml +++ b/etc/api/type-api.yaml @@ -2,13 +2,13 @@ api: base_path: "etc/api" properties: # additional fields specified by the user - params: '_additional_params' + params: "_additional_params" # custom scopes for authentication - scopes: '_scopes' + scopes: "_scopes" make: id: api target_name: APIs - target_suffix: '' + target_suffix: "" aggregated_target_suffix: -api depends_on_suffix: global_targets: Yes @@ -26,4 +26,5 @@ cargo: keywords: [protocol, web, api] doc_base_url: https://docs.rs dependencies: + - hyper = "^ 0.14" - url = "= 1.7" diff --git a/etc/api/type-cli.yaml b/etc/api/type-cli.yaml index dad9db6299..fbb3963f47 100644 --- a/etc/api/type-cli.yaml +++ b/etc/api/type-cli.yaml @@ -11,8 +11,8 @@ make: target_name: CLIs target_suffix: -cli aggregated_target_suffix: -cli - depends_on_suffix: '' - depends_on_id: 'api' + depends_on_suffix: "" + depends_on_id: "api" documentation_engine: mkdocs templates: - source: ../LICENSE.md @@ -28,6 +28,6 @@ cargo: doc_base_url: http://byron.github.io/google-apis-rs dependencies: - strsim = "^0.5" - - hyper-rustls = "^0.6" - - yup-hyper-mock = "^2.0" - clap = "^2.0" + - hyper = { version = "0.14", features = ["full"] } + - tokio = { version = "^ 1.0", features = ["full"] }