bazel: running gazelle to pick up dependency changes

This commit is contained in:
2023-05-06 13:37:58 -07:00
parent 984baa6bb4
commit 83d42dc489
7 changed files with 35 additions and 71 deletions

View File

@@ -1,4 +1,4 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "revoke",
@@ -7,7 +7,13 @@ go_library(
visibility = ["//visibility:public"],
deps = [
"//certlib",
"@com_github_cloudflare_cfssl//log",
"//log",
"@org_golang_x_crypto//ocsp",
],
)
go_test(
name = "revoke_test",
srcs = ["revoke_test.go"],
embed = [":revoke"],
)