-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathgo.mod
30 lines (25 loc) · 889 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module github.com/bgpfix/bgpipe
go 1.22.0
toolchain go1.23.1
require (
github.com/bgpfix/bgpfix v0.0.0-00010101000000-000000000000
github.com/gorilla/websocket v1.5.3
github.com/knadh/koanf/providers/posflag v0.1.0
github.com/knadh/koanf/v2 v2.1.1
github.com/puzpuzpuz/xsync/v3 v3.4.0
github.com/rs/zerolog v1.33.0
github.com/spf13/pflag v1.0.5
github.com/valyala/bytebufferpool v1.0.0
golang.org/x/sys v0.26.0
)
require (
github.com/buger/jsonparser v1.1.1 // indirect
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
github.com/knadh/koanf/maps v0.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
)
// for dev: use the latest code in ../bgpfix
replace github.com/bgpfix/bgpfix => ../bgpfix