blob: 86ffda8606f6761b394a29c2c40e90f21de18247 [file] [log] [blame]
Serge Bazanski77cb6c52020-12-19 00:09:22 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
Lorenz Brund13c1c62022-03-30 19:58:58 +02004 name = "network",
Serge Bazanski77cb6c52020-12-19 00:09:22 +01005 srcs = ["main.go"],
Serge Bazanski31370b02021-01-07 16:31:14 +01006 importpath = "source.monogon.dev/metropolis/node/core/network",
Serge Bazanski77cb6c52020-12-19 00:09:22 +01007 visibility = ["//:__subpackages__"],
8 deps = [
Lorenz Brund13c1c62022-03-30 19:58:58 +02009 "//metropolis/node/core/network/dhcp4c",
10 "//metropolis/node/core/network/dhcp4c/callback",
11 "//metropolis/node/core/network/dns",
12 "//metropolis/pkg/event",
13 "//metropolis/pkg/event/memory",
14 "//metropolis/pkg/supervisor",
15 "@com_github_google_nftables//:nftables",
16 "@com_github_google_nftables//expr",
17 "@com_github_insomniacslk_dhcp//dhcpv4",
18 "@com_github_vishvananda_netlink//:netlink",
Serge Bazanski77cb6c52020-12-19 00:09:22 +010019 ],
20)