go.mod: bump bart

Updates #bart

Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
Maisem Ali
2024-07-08 18:17:38 -07:00
committed by Maisem Ali
parent 8bd442ba8c
commit 2238ca8a05
6 changed files with 12 additions and 12 deletions

View File

@ -22,7 +22,7 @@ func emptySet(ip netip.Addr) bool { return false }
func bartLookup(t *bart.Table[struct{}]) func(netip.Addr) bool {
return func(ip netip.Addr) bool {
_, ok := t.Get(ip)
_, ok := t.Lookup(ip)
return ok
}
}