diff --git a/Cargo.lock b/Cargo.lock index 357ba6cade..c308c81e22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5204,7 +5204,6 @@ dependencies = [ "anyhow", "async-trait", "bytes", - "futures", "google-cloud-gax", "google-cloud-gax-internal", "google-cloud-iam-v1", @@ -5219,8 +5218,6 @@ dependencies = [ "serde", "serde_json", "serde_with", - "tokio", - "tokio-stream", "tracing", "uuid", ] diff --git a/librarian.yaml b/librarian.yaml index 70eb2a37c3..5ee73ea98c 100644 --- a/librarian.yaml +++ b/librarian.yaml @@ -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: @@ -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 diff --git a/src/generated/showcase/Cargo.toml b/src/generated/showcase/Cargo.toml index 9fd08ac9d7..bd1dd1a311 100644 --- a/src/generated/showcase/Cargo.toml +++ b/src/generated/showcase/Cargo.toml @@ -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"] } @@ -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 diff --git a/src/generated/showcase/src/model.rs b/src/generated/showcase/src/model.rs index eaf0b73382..0751c02f8b 100644 --- a/src/generated/showcase/src/model.rs +++ b/src/generated/showcase/src/model.rs @@ -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;