Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
language: rust
version: v0.38.1-0.20260819164204-f3a328be2b9d
version: v0.38.1-0.20260820171450-084470b21056
repo: googleapis/google-cloud-rust
sources:
conformance:
Expand Down Expand Up @@ -108,6 +108,15 @@ default:
- name: google-shopping-type
package: google-shopping-type
source: google.shopping.type
- name: http
package: http
used_if: streaming
- name: prost
package: prost
used_if: streaming
- name: prost-types
package: prost-types
used_if: streaming
- name: serde
package: serde
force_used: true
Expand Down
9 changes: 3 additions & 6 deletions src/generated/showcase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ default-rustls-provider = ["gaxi/_default-rustls-provider"]
all-features = true

[dependencies]
prost.workspace = true
prost-types.workspace = true
futures.workspace = true
http.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
async-trait.workspace = true
bytes.workspace = true
gaxi = { workspace = true, features = ["_internal-grpc-client", "_internal-http-client"] }
Expand All @@ -57,6 +51,9 @@ google-cloud-location.workspace = true
google-cloud-longrunning.workspace = true
google-cloud-lro.workspace = true
google-cloud-rpc.workspace = true
http.workspace = true
prost-types.workspace = true
prost.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions src/generated/showcase/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ extern crate google_cloud_location;
extern crate google_cloud_longrunning;
extern crate google_cloud_lro;
extern crate google_cloud_rpc;
extern crate http;
extern crate prost;
extern crate prost_types;
extern crate serde;
extern crate serde_json;
extern crate serde_with;
Expand Down
Loading