-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
59 lines (56 loc) · 1.83 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[workspace]
resolver = "2"
members = [
"src/auth",
"src/base",
"src/gax",
"src/generated/api",
"src/generated/bigtable/admin/v2",
"src/generated/cloud/common",
"src/generated/cloud/functions/v2",
"src/generated/cloud/kms/v1",
"src/generated/cloud/location",
"src/generated/cloud/run/v2",
"src/generated/cloud/secretmanager/v1",
"src/generated/cloud/translate/v3",
"src/generated/cloud/webrisk/v1",
"src/generated/cloud/workflows/v1",
"src/generated/devtools/cloudbuild/v2",
"src/generated/devtools/cloudtrace/v2",
"src/generated/iam/admin/v1",
"src/generated/iam/credentials/v1",
"src/generated/iam/v1",
"src/generated/iam/v2",
"src/generated/longrunning",
"src/generated/openapi-validation",
"src/generated/rpc",
"src/generated/spanner/admin/database/v1",
"src/generated/spanner/admin/instance/v1",
"src/generated/type",
"src/integration-tests",
"src/lro",
"src/root",
"src/wkt",
"tools/check-copyright",
]
[workspace.package]
edition = "2021"
authors = ["Google LLC"]
description = "Google Cloud Client Libraries for Rust"
license = "Apache-2.0"
repository = "https://github.com/googleapis/google-cloud-rust/tree/main"
keywords = ["gcp", "google-cloud", "google-cloud-rust", "sdk"]
categories = ["network-programming"]