summaryrefslogtreecommitdiffhomepage
path: root/go.mod
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@gmail.com>2019-10-25 20:33:59 +0900
committerFUJITA Tomonori <fujita.tomonori@gmail.com>2019-10-25 20:38:33 +0900
commitb4e2d9e440a4eb6d3091a7c586d2e55b69ec968a (patch)
tree68af74b393dda96a33d47a995b8c3f12680e51e2 /go.mod
parent6e81f596b1e924337470417cf1e3faa3260308da (diff)
table: replace radix with crit-bit algo for longer-prefixes search
faster and less memory usage. Now go-radix has gone. Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod12
1 files changed, 5 insertions, 7 deletions
diff --git a/go.mod b/go.mod
index 572027d2..0ff2519e 100644
--- a/go.mod
+++ b/go.mod
@@ -1,8 +1,7 @@
module github.com/osrg/gobgp
require (
- github.com/BurntSushi/toml v0.3.0
- github.com/armon/go-radix v0.0.0-20170727155443-1fca145dffbc
+ github.com/BurntSushi/toml v0.3.1
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/dgryski/go-farm v0.0.0-20171119141306-ac7624ea8da3
@@ -15,8 +14,7 @@ require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jessevdk/go-flags v1.3.0
github.com/k-sone/critbitgo v1.3.1-0.20191024122315-48c9e1530131
- github.com/kr/pretty v0.0.0-20160823170715-cfb55aafdaf3
- github.com/kr/text v0.0.0-20160504234017-7cafcd837844 // indirect
+ github.com/kr/pretty v0.1.0
github.com/magiconair/properties v1.7.3 // indirect
github.com/mitchellh/mapstructure v0.0.0-20170523030023-d0303fe80992 // indirect
github.com/pelletier/go-buffruneio v0.2.0 // indirect
@@ -32,9 +30,9 @@ require (
github.com/stretchr/testify v1.1.4
github.com/vishvananda/netlink v0.0.0-20170802012344-a95659537721
github.com/vishvananda/netns v0.0.0-20170707011535-86bef332bfc3 // indirect
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6 // indirect
- golang.org/x/sys v0.0.0-20190405154228-4b34438f7a67 // indirect
+ golang.org/x/net v0.0.0-20190620200207-3b0461eec859
+ golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
+ golang.org/x/sys v0.0.0-20190412213103-97732733099d // indirect
google.golang.org/genproto v0.0.0-20170731182057-09f6ed296fc6 // indirect
google.golang.org/grpc v1.5.1
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect