rename google-api-client to google-apis-common

This commit is contained in:
Sebastian Thiel
2022-09-25 19:43:56 +08:00
parent 013dc54ac8
commit 8d7309b78c
7 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ serde = { version = "^ 1.0", features = ["derive"] }
serde_json = "^ 1.0"
itertools = "^ 0.10"
% if 'is_executable' not in cargo:
google-api-client = { path = "../../google-api-client" }
google-apis-common = { path = "../../google-apis-common", version = "4.0" }
% endif
% for dep in cargo.get('dependencies', list()):
${dep}

View File

@@ -43,7 +43,7 @@ ${lib.docs(c)}
// Re-export the hyper and hyper_rustls crate, they are required to build the hub
pub use hyper;
pub use hyper_rustls;
pub extern crate google_api_client as client;
pub extern crate google_apis_common as client;
pub mod api;

View File

@@ -1,2 +1,2 @@
//! This file serves on purpose and is an artifact of the buildsystem.
//! Its content can now be found in the `google-api-client` crate.
//! Its content can now be found in the `google-apis-common` crate.

View File

@@ -22,7 +22,7 @@ extern crate strsim;
// just pull it in the check if it compiles
mod cli;
use google_api_client as api;
use google_apis_common as api;
/// This module is for testing only, its code is used in mako templates
#[cfg(test)]