update vendor directory

Signed-off-by: hongming <talonwan@yunify.com>
This commit is contained in:
hongming
2021-03-24 10:12:33 +08:00
parent e6bbff1111
commit c1574175e1
39 changed files with 15160 additions and 2215 deletions

36
vendor/github.com/go-resty/resty/v2/BUILD.bazel generated vendored Normal file
View File

@@ -0,0 +1,36 @@
package(default_visibility = ["//visibility:private"])
load("@bazel_gazelle//:def.bzl", "gazelle")
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
gazelle(
name = "gazelle",
command = "fix",
prefix = "github.com/go-resty/resty/v2",
)
go_library(
name = "go_default_library",
srcs = glob(
["*.go"],
exclude = ["*_test.go"],
),
importpath = "github.com/go-resty/resty/v2",
visibility = ["//visibility:public"],
deps = ["@org_golang_x_net//publicsuffix:go_default_library"],
)
go_test(
name = "go_default_test",
srcs =
glob(
["*_test.go"],
exclude = ["example_test.go"],
),
data = glob([".testdata/*"]),
embed = [":go_default_library"],
importpath = "github.com/go-resty/resty/v2",
deps = [
"@org_golang_x_net//proxy:go_default_library",
],
)