Skip to content

0.55.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Dec 18:03
· 86 commits to main since this release

0.55.0

Additional documentation can be found at: https://bazelbuild.github.io/rules_rust/#setup

Bzlmod

bazel_dep(name = "rules_rust", version = "0.55.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust",
    integrity = "sha256-EDIzwp423JkMhipNiyvAukV1t9gKNixFF4abF4kWW+M=",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.55.0/rules_rust-0.55.0.tar.gz"],
)

Extensions

Bindgen

Bzlmod

bazel_dep(name = "rules_rust_bindgen", version = "0.55.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust_bindgen",
    integrity = "sha256-{ext_bindgen_sha256_base64}",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.55.0/rules_rust_bindgen-0.55.0.tar.gz"],
)

Prost

Bzlmod

bazel_dep(name = "rules_rust_prost", version = "0.55.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust_prost",
    integrity = "sha256-{ext_prost_sha256_base64}",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.55.0/rules_rust_prost-0.55.0.tar.gz"],
)

Protobuf

Bzlmod

bazel_dep(name = "rules_rust_protobuf", version = "0.55.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust_protobuf",
    integrity = "sha256-{ext_protobuf_sha256_base64}",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.55.0/rules_rust_protobuf-0.55.0.tar.gz"],
)

Wasm-Bindgen

Bzlmod

bazel_dep(name = "rules_rust_wasm_bindgen", version = "0.55.0")

WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_rust",
    integrity = "sha256-{ext_wasm_bindgen_sha256_base64}",
    urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.55.0/rules_rust_wasm_bindgen-0.55.0.tar.gz"],
)

Full Changelog: 0.54.0...0.55.0