mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
ba40da7e36
Bumps [github.com/hashicorp/vault](https://github.com/hashicorp/vault) from 1.4.2 to 1.9.9. - [Release notes](https://github.com/hashicorp/vault/releases) - [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/vault/compare/v1.4.2...v1.9.9) --- updated-dependencies: - dependency-name: github.com/hashicorp/vault dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
650 B
Python
32 lines
650 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
go_library(
|
|
name = "utilities",
|
|
srcs = [
|
|
"doc.go",
|
|
"pattern.go",
|
|
"readerfactory.go",
|
|
"string_array_flag.go",
|
|
"trie.go",
|
|
],
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/utilities",
|
|
)
|
|
|
|
go_test(
|
|
name = "utilities_test",
|
|
size = "small",
|
|
srcs = [
|
|
"string_array_flag_test.go",
|
|
"trie_test.go",
|
|
],
|
|
deps = [":utilities"],
|
|
)
|
|
|
|
alias(
|
|
name = "go_default_library",
|
|
actual = ":utilities",
|
|
visibility = ["//visibility:public"],
|
|
)
|