-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
60 lines (54 loc) · 1.03 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
go_library(
name = "vso_hash",
srcs = ["vso_hash.go"],
)
go_test(
name = "vso_hash_test",
srcs = ["vso_hash_test.go"],
deps = [
":testify",
":vso_hash",
],
)
go_benchmark(
name = "vso_hash_benchmark",
srcs = ["vso_hash_benchmark_test.go"],
deps = [
":vso_hash",
],
)
go_module(
name = "testify",
install = [
"assert",
"require",
],
licences = ["MIT"],
module = "github.com/stretchr/testify",
version = "v1.7.0",
deps = [
":difflib",
":spew",
":yaml",
],
)
go_module(
name = "difflib",
install = ["difflib"],
licences = ["BSD-3-Clause"],
module = "github.com/pmezard/go-difflib",
version = "v1.0.0",
)
go_module(
name = "spew",
install = ["spew"],
licences = ["ISC"],
module = "github.com/davecgh/go-spew",
version = "v1.1.1",
)
go_module(
name = "yaml",
licences = ["MIT"],
module = "gopkg.in/yaml.v3",
version = "v3.0.0-20210107192922-496545a6307b",
)