Skip to content

Commit

Permalink
Rust: update manifests to refer to the real (non-staging) crates
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 707651257
  • Loading branch information
acozzette authored and copybara-github committed Dec 18, 2024
1 parent 8543534 commit 09b7506
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion rust/release_crates/protobuf/Cargo-template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rust/release_crates/protobuf_codegen/Cargo-template.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rust/release_crates/protobuf_example/Cargo-template.toml
Original file line number Diff line number Diff line change
@@ -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" }
protobuf-codegen = { version = "{VERSION}", path = "../protobuf_codegen", package = "protobuf-codegen" }
Original file line number Diff line number Diff line change
@@ -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" }

0 comments on commit 09b7506

Please sign in to comment.