From 09b7506cd0655bc79e0ca4820294c0149ee239ec Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Wed, 18 Dec 2024 13:28:30 -0800 Subject: [PATCH] Rust: update manifests to refer to the real (non-staging) crates PiperOrigin-RevId: 707651257 --- rust/release_crates/protobuf/Cargo-template.toml | 2 +- rust/release_crates/protobuf_codegen/Cargo-template.toml | 2 +- rust/release_crates/protobuf_example/Cargo-template.toml | 6 +++--- .../protobuf_well_known_types/Cargo-template.toml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rust/release_crates/protobuf/Cargo-template.toml b/rust/release_crates/protobuf/Cargo-template.toml index 87c98b44e3265..c02be0868e77a 100644 --- a/rust/release_crates/protobuf/Cargo-template.toml +++ b/rust/release_crates/protobuf/Cargo-template.toml @@ -6,7 +6,7 @@ # https://developers.google.com/open-source/licenses/bsd [package] -name = "staging-protobuf" +name = "protobuf" version = "{VERSION}" edition = "2021" # The Rust edition (not to be confused with Protobuf Edition). links = "upb" diff --git a/rust/release_crates/protobuf_codegen/Cargo-template.toml b/rust/release_crates/protobuf_codegen/Cargo-template.toml index c4446a4afcb44..f3ece958dcd07 100644 --- a/rust/release_crates/protobuf_codegen/Cargo-template.toml +++ b/rust/release_crates/protobuf_codegen/Cargo-template.toml @@ -1,6 +1,6 @@ [package] edition = "2021" # The Rust edition (not to be confused with Protobuf Edition). -name = "staging-protobuf-codegen" +name = "protobuf-codegen" readme = "README.md" version = "{VERSION}" description = "Code generator for Rust Protocol Buffers bindings" diff --git a/rust/release_crates/protobuf_example/Cargo-template.toml b/rust/release_crates/protobuf_example/Cargo-template.toml index 86279e4fb602d..ffa002877b613 100644 --- a/rust/release_crates/protobuf_example/Cargo-template.toml +++ b/rust/release_crates/protobuf_example/Cargo-template.toml @@ -1,12 +1,12 @@ [package] -name = "staging-protobuf-example" +name = "protobuf-example" version = "{VERSION}" edition = "2021" description = "Example use of Rust Protocol Buffers bindings" license = "BSD-3-Clause" [dependencies] -protobuf = { version = "{VERSION}", path = "../protobuf", package = "staging-protobuf" } +protobuf = { version = "{VERSION}", path = "../protobuf", package = "protobuf" } [build-dependencies] -protobuf-codegen = { version = "{VERSION}", path = "../protobuf_codegen", package = "staging-protobuf-codegen" } \ No newline at end of file +protobuf-codegen = { version = "{VERSION}", path = "../protobuf_codegen", package = "protobuf-codegen" } diff --git a/rust/release_crates/protobuf_well_known_types/Cargo-template.toml b/rust/release_crates/protobuf_well_known_types/Cargo-template.toml index ba636788be162..34e47c21913e3 100644 --- a/rust/release_crates/protobuf_well_known_types/Cargo-template.toml +++ b/rust/release_crates/protobuf_well_known_types/Cargo-template.toml @@ -1,12 +1,12 @@ [package] -name = "staging-protobuf-well-known-types" +name = "protobuf-well-known-types" version = "{VERSION}" edition = "2021" description = "Protobuf Well-Known Types" license = "BSD-3-Clause" [dependencies] -protobuf = { version = "{VERSION}", path = "../protobuf", package = "staging-protobuf" } +protobuf = { version = "{VERSION}", path = "../protobuf", package = "protobuf" } [build-dependencies] -protobuf-codegen = { version = "{VERSION}", path = "../protobuf_codegen", package = "staging-protobuf-codegen" } +protobuf-codegen = { version = "{VERSION}", path = "../protobuf_codegen", package = "protobuf-codegen" }