update deps; switch to goutils syslog.

This commit is contained in:
2023-05-05 07:13:46 +00:00
parent 7b7f1ea8a9
commit c475287fb1
17 changed files with 139 additions and 234 deletions

View File

@@ -3,8 +3,11 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "iptools",
srcs = [
"hardware_address.go",
"lease_info.go",
"pool.go",
"range.go",
"tools.go",
],
importpath = "git.wntrmute.dev/kyle/kdhcp/iptools",
visibility = ["//visibility:public"],
@@ -12,6 +15,10 @@ go_library(
go_test(
name = "iptools_test",
srcs = ["range_test.go"],
srcs = [
"hardware_address_test.go",
"pool_test.go",
"range_test.go",
],
embed = [":iptools"],
)