Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .bcr/metadata.template.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"homepage": "https://github.com/stackb/bazel-aquery-differ",
"homepage": "https://github.com/stackb/bazel_difftools",
"maintainers": [
{
"name": "Paul Cody",
Expand All @@ -8,7 +8,7 @@
}
],
"repository": [
"github:stackb/bazel-aquery-differ"
"github:stackb/bazel_difftools"
],
"versions": [],
"yanked_versions": {}
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/ci.bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ build --announce_rc
# though it makes the log noisier.
test --test_output=errors

# Use remote cache instance
build:cas --remote_instance_name=main
build:cas --remote_cache=grpc://cas.stack.build:50051
# This directory is configured in GitHub actions to be persisted between runs.
build --disk_cache=$HOME/.cache/bazel
build --repository_cache=$HOME/.cache/bazel-repo
build --repo_contents_cache=

# Allows tests to run bazelisk-in-bazel, since this is the cache folder used
test --test_env=XDG_CACHE_HOME
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: true
# Share repository cache between workflows.
repository-cache: true
- name: bazel build
run: >-
bazelisk
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ jobs:
# uses: ./.github/workflows/release_ruleset.yaml # copied-from: bazel-contrib/.github/.github/workflows/[email protected]
with:
prerelease: false
release_files: rules_proto-*.tar.gz
release_files: bazel_difftools-*.tar.gz
tag_name: ${{ inputs.tag_name || github.ref_name }}
secrets:
inherit
secrets: inherit
publish:
needs: release
uses: ./.github/workflows/publish.yaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readonly TAG=$1
# The prefix is chosen to match what GitHub generates for source archives.
# This guarantees that users can easily switch from a released artifact to a source archive
# with minimal differences in their code (e.g. strip_prefix remains the same)
readonly PREFIX="bazel-aquery-differ-${TAG}"
readonly PREFIX="bazel_difftools-${TAG}"
readonly ARCHIVE="${PREFIX}.tar.gz"

# NB: configuration for 'git archive' is in /.gitattributes
Expand All @@ -23,6 +23,6 @@ cat << EOF
Add to your \`MODULE.bazel\` file:

\`\`\`starlark
bazel_dep(name = "bazel-aquery-differ", version = "${TAG}")
bazel_dep(name = "bazel_difftools", version = "${TAG}")
\`\`\`
EOF
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ load("@gazelle//:def.bzl", "gazelle_binary")
# gazelle:resolve go go github.com/stackb/rules_proto/pkg/protoc @build_stack_rules_proto//pkg/protoc

# -- Gazelle language "go" ---
# gazelle:prefix github.com/stackb/bazel-aquery-differ
# gazelle:prefix github.com/stackb/bazel_difftools
# gazelle:go_generate_proto false

# -- Gazelle language "protobuf" ---
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module(
name = "bazel-aquery-differ",
name = "bazel_difftools",
version = "0.0.0",
)

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![CI](https://github.com/stackb/bazel-aquery-differ/actions/workflows/ci.yaml/badge.svg)](https://github.com/stackb/bazel-aquery-differ/actions/workflows/ci.yaml)
[![CI](https://github.com/stackb/bazel_difftools/actions/workflows/ci.yaml/badge.svg)](https://github.com/stackb/bazel_difftools/actions/workflows/ci.yaml)

# bazel-aquery-differ
# bazel_difftools

A tool to compare Bazel action query outputs with an interactive HTML report.
This is a re-imagination of the [Bazel
Expand All @@ -22,7 +22,7 @@ in Go with enhanced visualization features.
Add to your `MODULE.bazel`:

```starlark
bazel_dep(name = "bazel-aquery-differ", version = "0.0.0")
bazel_dep(name = "bazel_difftools", version = "0.0.0")
```

> **Note**: This module is not yet published to the Bazel Central Registry. For
Expand All @@ -33,8 +33,8 @@ bazel_dep(name = "bazel-aquery-differ", version = "0.0.0")
Download a release artifact, or build from source:

```bash
git clone https://github.com/stackb/bazel-aquery-differ.git
cd bazel-aquery-differ
git clone https://github.com/stackb/bazel_difftools.git
cd bazel_difftools
bazel build //cmd/aquerydiff
```

Expand All @@ -45,7 +45,7 @@ bazel build //cmd/aquerydiff
Load the rules in your `BUILD.bazel` file:

```starlark
load("@bazel-aquery-differ//rules:defs.bzl", "aquery_diff", "aquery_git_diff")
load("@bazel_difftools//rules:defs.bzl", "aquery_diff", "aquery_git_diff")
```

#### Rule: `aquery_diff`
Expand Down
Empty file added WORKSPACE
Empty file.
4 changes: 2 additions & 2 deletions build/stack/bazel/aquery/differ/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ proto_compiled_sources(
"Msrc/main/protobuf/build.proto=github.com/bazelbuild/bazelapis/src/main/protobuf/build",
"Msrc/main/protobuf/stardoc_output.proto=github.com/bazelbuild/bazel/src/main/protobuf/stardoc_output",
]},
output_mappings = ["action.pb.go=github.com/stackb/bazel-aquery-differ/build/stack/bazel/aquery/differ/action.pb.go"],
output_mappings = ["action.pb.go=github.com/stackb/bazel_difftools/build/stack/bazel/aquery/differ/action.pb.go"],
plugins = ["@build_stack_rules_proto//plugin/golang/protobuf:protoc-gen-go"],
proto = "differ_proto",
visibility = ["//visibility:public"],
Expand All @@ -28,7 +28,7 @@ proto_compiled_sources(
go_library(
name = "differ",
srcs = ["action.pb.go"],
importpath = "github.com/stackb/bazel-aquery-differ/build/stack/bazel/aquery/differ",
importpath = "github.com/stackb/bazel_difftools/build/stack/bazel/aquery/differ",
visibility = ["//visibility:public"],
deps = [
"@bazelapis//src/main/protobuf:analysis_v2_go_proto",
Expand Down
2 changes: 1 addition & 1 deletion build/stack/bazel/aquery/differ/action.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/stack/bazel/aquery/differ/action.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package build.stack.bazel.aquery.differ;

option go_package = "github.com/stackb/bazel-aquery-differ/build/stack/bazel/aquery/differ";
option go_package = "github.com/stackb/bazel_difftools/build/stack/bazel/aquery/differ";

import "src/main/protobuf/analysis_v2.proto";

Expand Down
2 changes: 1 addition & 1 deletion cmd/aquerydiff/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ go_library(
"config.go",
"main.go",
],
importpath = "github.com/stackb/bazel-aquery-differ/cmd/aquerydiff",
importpath = "github.com/stackb/bazel_difftools/cmd/aquerydiff",
visibility = ["//visibility:private"],
deps = [
"//pkg/action",
Expand Down
6 changes: 3 additions & 3 deletions cmd/aquerydiff/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"runtime"

anpb "github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2"
"github.com/stackb/bazel-aquery-differ/pkg/action"
"github.com/stackb/bazel-aquery-differ/pkg/protobuf"
"github.com/stackb/bazel-aquery-differ/pkg/report"
"github.com/stackb/bazel_difftools/pkg/action"
"github.com/stackb/bazel_difftools/pkg/protobuf"
"github.com/stackb/bazel_difftools/pkg/report"
)

func main() {
Expand Down
26 changes: 13 additions & 13 deletions examples/simple/after.textproto
Original file line number Diff line number Diff line change
Expand Up @@ -572,15 +572,15 @@ arguments: "cmd/aquerydiff/config.go"
arguments: "-src"
arguments: "cmd/aquerydiff/main.go"
arguments: "-arc"
arguments: "github.com/stackb/bazel-aquery-differ/pkg/action=github.com/stackb/bazel-aquery-differ/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/action/action.x"
arguments: "github.com/stackb/bazel_difftools/pkg/action=github.com/stackb/bazel_difftools/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/action/action.x"
arguments: "-arc"
arguments: "github.com/stackb/bazel-aquery-differ/pkg/protobuf=github.com/stackb/bazel-aquery-differ/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/protobuf/protobuf.x"
arguments: "github.com/stackb/bazel_difftools/pkg/protobuf=github.com/stackb/bazel_difftools/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/protobuf/protobuf.x"
arguments: "-arc"
arguments: "github.com/stackb/bazel-aquery-differ/pkg/report=github.com/stackb/bazel-aquery-differ/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/report/report.x"
arguments: "github.com/stackb/bazel_difftools/pkg/report=github.com/stackb/bazel_difftools/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/report/report.x"
arguments: "-arc"
arguments: "github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2=github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/external/build_stack_rules_proto++proto_repository+bazelapis/src/main/protobuf/analysis_v2_go_proto.x"
arguments: "-importpath"
arguments: "github.com/stackb/bazel-aquery-differ/cmd/aquerydiff"
arguments: "github.com/stackb/bazel_difftools/cmd/aquerydiff"
arguments: "-p"
arguments: "main"
arguments: "-package_list"
Expand Down Expand Up @@ -1527,17 +1527,17 @@ arguments: "@@build_stack_rules_proto++proto_repository+bazelapis//src/main/prot
arguments: "-arc"
arguments: "@@build_stack_rules_proto++proto_repository+bazelapis//src/main/protobuf:analysis_v2_go_proto=github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/external/build_stack_rules_proto++proto_repository+bazelapis/src/main/protobuf/analysis_v2_go_proto.a"
arguments: "-arc"
arguments: "@@//build/stack/bazel/aquery/differ:differ=github.com/stackb/bazel-aquery-differ/build/stack/bazel/aquery/differ=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/build/stack/bazel/aquery/differ/differ.a"
arguments: "@@//build/stack/bazel/aquery/differ:differ=github.com/stackb/bazel_difftools/build/stack/bazel/aquery/differ=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/build/stack/bazel/aquery/differ/differ.a"
arguments: "-arc"
arguments: "@@//pkg/pathfragment:pathfragment=github.com/stackb/bazel-aquery-differ/pkg/pathfragment=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/pathfragment/pathfragment.a"
arguments: "@@//pkg/pathfragment:pathfragment=github.com/stackb/bazel_difftools/pkg/pathfragment=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/pathfragment/pathfragment.a"
arguments: "-arc"
arguments: "@@//pkg/artifact:artifact=github.com/stackb/bazel-aquery-differ/pkg/artifact=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/artifact/artifact.a"
arguments: "@@//pkg/artifact:artifact=github.com/stackb/bazel_difftools/pkg/artifact=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/artifact/artifact.a"
arguments: "-arc"
arguments: "@@//pkg/depset:depset=github.com/stackb/bazel-aquery-differ/pkg/depset=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/depset/depset.a"
arguments: "@@//pkg/depset:depset=github.com/stackb/bazel_difftools/pkg/depset=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/depset/depset.a"
arguments: "-arc"
arguments: "@@//pkg/protobuf:protobuf=github.com/stackb/bazel-aquery-differ/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/protobuf/protobuf.a"
arguments: "@@//pkg/protobuf:protobuf=github.com/stackb/bazel_difftools/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/protobuf/protobuf.a"
arguments: "-arc"
arguments: "@@//pkg/target:target=github.com/stackb/bazel-aquery-differ/pkg/target=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/target/target.a"
arguments: "@@//pkg/target:target=github.com/stackb/bazel_difftools/pkg/target=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/target/target.a"
arguments: "-arc"
arguments: "@@gazelle++go_deps+com_github_google_go_cmp//cmp/internal/flags:flags=github.com/google/go-cmp/cmp/internal/flags=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/external/gazelle++go_deps+com_github_google_go_cmp/cmp/internal/flags/flags.a"
arguments: "-arc"
Expand All @@ -1557,17 +1557,17 @@ arguments: "@@gazelle++go_deps+com_github_hexops_gotextdiff//:gotextdiff=github.
arguments: "-arc"
arguments: "@@gazelle++go_deps+com_github_hexops_gotextdiff//myers:myers=github.com/hexops/gotextdiff/myers=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/external/gazelle++go_deps+com_github_hexops_gotextdiff/myers/myers.a"
arguments: "-arc"
arguments: "@@//pkg/action:action=github.com/stackb/bazel-aquery-differ/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/action/action.a"
arguments: "@@//pkg/action:action=github.com/stackb/bazel_difftools/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/action/action.a"
arguments: "-arc"
arguments: "@@//pkg/report:report=github.com/stackb/bazel-aquery-differ/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/report/report.a"
arguments: "@@//pkg/report:report=github.com/stackb/bazel_difftools/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/pkg/report/report.a"
arguments: "-package_list"
arguments: "bazel-out/darwin_arm64-opt-exec-ST-d6cc8b84a7bb/bin/external/rules_go++go_sdk+main___download_0/packages.txt"
arguments: "-o"
arguments: "bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/cmd/aquerydiff/aquerydiff_linux_amd64_/aquerydiff_linux_amd64"
arguments: "-main"
arguments: "bazel-out/darwin_arm64-fastbuild-ST-28c832439b7e/bin/cmd/aquerydiff/aquerydiff_linux_amd64.a"
arguments: "-p"
arguments: "github.com/stackb/bazel-aquery-differ/cmd/aquerydiff"
arguments: "github.com/stackb/bazel_difftools/cmd/aquerydiff"
arguments: "--"
arguments: "-linkmode"
arguments: "internal"
Expand Down
26 changes: 13 additions & 13 deletions examples/simple/before.textproto
Original file line number Diff line number Diff line change
Expand Up @@ -572,15 +572,15 @@ arguments: "cmd/aquerydiff/config.go"
arguments: "-src"
arguments: "cmd/aquerydiff/main.go"
arguments: "-arc"
arguments: "github.com/stackb/bazel-aquery-differ/pkg/action=github.com/stackb/bazel-aquery-differ/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/action/action.x"
arguments: "github.com/stackb/bazel_difftools/pkg/action=github.com/stackb/bazel_difftools/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/action/action.x"
arguments: "-arc"
arguments: "github.com/stackb/bazel-aquery-differ/pkg/protobuf=github.com/stackb/bazel-aquery-differ/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/protobuf/protobuf.x"
arguments: "github.com/stackb/bazel_difftools/pkg/protobuf=github.com/stackb/bazel_difftools/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/protobuf/protobuf.x"
arguments: "-arc"
arguments: "github.com/stackb/bazel-aquery-differ/pkg/report=github.com/stackb/bazel-aquery-differ/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/report/report.x"
arguments: "github.com/stackb/bazel_difftools/pkg/report=github.com/stackb/bazel_difftools/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/report/report.x"
arguments: "-arc"
arguments: "github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2=github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/external/build_stack_rules_proto++proto_repository+bazelapis/src/main/protobuf/analysis_v2_go_proto.x"
arguments: "-importpath"
arguments: "github.com/stackb/bazel-aquery-differ/cmd/aquerydiff"
arguments: "github.com/stackb/bazel_difftools/cmd/aquerydiff"
arguments: "-p"
arguments: "main"
arguments: "-package_list"
Expand Down Expand Up @@ -1626,17 +1626,17 @@ arguments: "@@build_stack_rules_proto++proto_repository+bazelapis//src/main/prot
arguments: "-arc"
arguments: "@@build_stack_rules_proto++proto_repository+bazelapis//src/main/protobuf:analysis_v2_go_proto=github.com/bazelbuild/bazelapis/src/main/protobuf/analysis_v2=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/external/build_stack_rules_proto++proto_repository+bazelapis/src/main/protobuf/analysis_v2_go_proto.a"
arguments: "-arc"
arguments: "@@//build/stack/bazel/aquery/differ:differ=github.com/stackb/bazel-aquery-differ/build/stack/bazel/aquery/differ=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/build/stack/bazel/aquery/differ/differ.a"
arguments: "@@//build/stack/bazel/aquery/differ:differ=github.com/stackb/bazel_difftools/build/stack/bazel/aquery/differ=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/build/stack/bazel/aquery/differ/differ.a"
arguments: "-arc"
arguments: "@@//pkg/pathfragment:pathfragment=github.com/stackb/bazel-aquery-differ/pkg/pathfragment=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/pathfragment/pathfragment.a"
arguments: "@@//pkg/pathfragment:pathfragment=github.com/stackb/bazel_difftools/pkg/pathfragment=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/pathfragment/pathfragment.a"
arguments: "-arc"
arguments: "@@//pkg/artifact:artifact=github.com/stackb/bazel-aquery-differ/pkg/artifact=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/artifact/artifact.a"
arguments: "@@//pkg/artifact:artifact=github.com/stackb/bazel_difftools/pkg/artifact=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/artifact/artifact.a"
arguments: "-arc"
arguments: "@@//pkg/depset:depset=github.com/stackb/bazel-aquery-differ/pkg/depset=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/depset/depset.a"
arguments: "@@//pkg/depset:depset=github.com/stackb/bazel_difftools/pkg/depset=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/depset/depset.a"
arguments: "-arc"
arguments: "@@//pkg/protobuf:protobuf=github.com/stackb/bazel-aquery-differ/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/protobuf/protobuf.a"
arguments: "@@//pkg/protobuf:protobuf=github.com/stackb/bazel_difftools/pkg/protobuf=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/protobuf/protobuf.a"
arguments: "-arc"
arguments: "@@//pkg/target:target=github.com/stackb/bazel-aquery-differ/pkg/target=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/target/target.a"
arguments: "@@//pkg/target:target=github.com/stackb/bazel_difftools/pkg/target=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/target/target.a"
arguments: "-arc"
arguments: "@@gazelle++go_deps+com_github_google_go_cmp//cmp/internal/flags:flags=github.com/google/go-cmp/cmp/internal/flags=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/external/gazelle++go_deps+com_github_google_go_cmp/cmp/internal/flags/flags.a"
arguments: "-arc"
Expand All @@ -1656,17 +1656,17 @@ arguments: "@@gazelle++go_deps+com_github_hexops_gotextdiff//:gotextdiff=github.
arguments: "-arc"
arguments: "@@gazelle++go_deps+com_github_hexops_gotextdiff//myers:myers=github.com/hexops/gotextdiff/myers=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/external/gazelle++go_deps+com_github_hexops_gotextdiff/myers/myers.a"
arguments: "-arc"
arguments: "@@//pkg/action:action=github.com/stackb/bazel-aquery-differ/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/action/action.a"
arguments: "@@//pkg/action:action=github.com/stackb/bazel_difftools/pkg/action=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/action/action.a"
arguments: "-arc"
arguments: "@@//pkg/report:report=github.com/stackb/bazel-aquery-differ/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/report/report.a"
arguments: "@@//pkg/report:report=github.com/stackb/bazel_difftools/pkg/report=bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/pkg/report/report.a"
arguments: "-package_list"
arguments: "bazel-out/darwin_arm64-opt-exec-ST-d6cc8b84a7bb/bin/external/rules_go++go_sdk+main___download_0/packages.txt"
arguments: "-o"
arguments: "bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/cmd/aquerydiff/aquerydiff_darwin_amd64_/aquerydiff_darwin_amd64"
arguments: "-main"
arguments: "bazel-out/darwin_arm64-fastbuild-ST-429f90df6b5d/bin/cmd/aquerydiff/aquerydiff_darwin_amd64.a"
arguments: "-p"
arguments: "github.com/stackb/bazel-aquery-differ/cmd/aquerydiff"
arguments: "github.com/stackb/bazel_difftools/cmd/aquerydiff"
arguments: "--"
arguments: "-linkmode"
arguments: "internal"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/stackb/bazel-aquery-differ
module github.com/stackb/bazel_difftools

go 1.23.1

Expand Down
Loading