google_cloud_rust_raw/
lib.rs

1// Copyright 2020 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![allow(bare_trait_objects)]
16
17// This appears as a comment in each generated file. Add it once here
18// to save a bit of time and effort.
19
20const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_28_0;
21
22pub const API_CLIENT_ID: &str = "gcp-grpc-rs";
23
24pub const VERSION: &str = env!("CARGO_PKG_VERSION");
25
26pub(crate) mod iam;
27pub(crate) mod rpc;
28pub(crate) mod r#type;
29
30// pub mod empty;
31pub mod api;
32#[cfg(feature = "bigtable")]
33pub mod bigtable;
34pub mod cloud;
35#[cfg(any(feature = "bigtable", feature = "pubsub", feature = "spanner"))]
36pub mod empty;
37pub mod identity;
38pub mod logging;
39pub mod longrunning;
40pub mod orgpolicy;
41#[cfg(feature = "pubsub")]
42pub mod pubsub;
43#[cfg(feature = "spanner")]
44pub mod spanner;