blob: 1e76fed363d37dce7c9c5bf14d38aab77fa2e3f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package(licenses = ["notice"]) # BSD
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "hash",
srcs = ["hash.go"],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/network/hash",
visibility = ["//visibility:public"],
deps = [
"//pkg/rand",
"//pkg/tcpip/header",
],
)
|