blob: 3acea54b28a6fc3829944ae750ad7f45be0a15e4 [file]
load("@rules_pkg//pkg:mappings.bzl", "pkg_filegroup", "pkg_files", "strip_prefix")
load("//rust/release_crates:substitute_rust_release_version.bzl", "substitute_rust_release_version")
pkg_filegroup(
name = "google_protobuf_crate",
srcs = [
":crate_root_files",
"//rust/release_crates:license",
],
prefix = "google_protobuf",
visibility = ["//rust:__subpackages__"],
)
pkg_files(
name = "crate_root_files",
srcs = [":srcs"],
strip_prefix = strip_prefix.from_root("rust/release_crates/google_protobuf"),
)
substitute_rust_release_version(
src = "Cargo-template.toml",
out = "Cargo.toml",
)
filegroup(
name = "srcs",
srcs = ["Cargo.toml"] + glob(["**/*"]),
visibility = ["//rust:__subpackages__"],
)