Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
common --noenable_bzlmod

# Pass CC, CXX and PATH from the environment.
build --action_env=CC
build --action_env=CXX
Expand Down
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.0
7.1.0
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install dependencies
run: cargo install cargo-raze --version 0.14.1
run: cargo install cargo-raze --version 0.16.1

- name: Format (bazel query)
run: |
Expand Down
4 changes: 4 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ load("@proxy_wasm_cpp_host//bazel:repositories.bzl", "proxy_wasm_cpp_host_reposi

proxy_wasm_cpp_host_repositories()

load("@proxy_wasm_cpp_host//bazel:python.bzl", "proxy_wasm_cpp_host_python")

proxy_wasm_cpp_host_python()

load("@proxy_wasm_cpp_host//bazel:dependencies.bzl", "proxy_wasm_cpp_host_dependencies")

proxy_wasm_cpp_host_dependencies()
Expand Down
8 changes: 4 additions & 4 deletions bazel/cargo/wasmtime/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ licenses([
# Aliased targets
alias(
name = "anyhow",
actual = "@wasmtime__anyhow__1_0_71//:anyhow",
actual = "@wasmtime__anyhow__1_0_81//:anyhow",
tags = [
"cargo-raze",
"manual",
Expand All @@ -23,7 +23,7 @@ alias(

alias(
name = "env_logger",
actual = "@wasmtime__env_logger__0_10_0//:env_logger",
actual = "@wasmtime__env_logger__0_10_2//:env_logger",
tags = [
"cargo-raze",
"manual",
Expand All @@ -32,7 +32,7 @@ alias(

alias(
name = "once_cell",
actual = "@wasmtime__once_cell__1_17_2//:once_cell",
actual = "@wasmtime__once_cell__1_19_0//:once_cell",
tags = [
"cargo-raze",
"manual",
Expand All @@ -41,7 +41,7 @@ alias(

alias(
name = "wasmtime",
actual = "@wasmtime__wasmtime__9_0_3//:wasmtime",
actual = "@wasmtime__wasmtime__9_0_4//:wasmtime",
tags = [
"cargo-raze",
"manual",
Expand Down
Loading