-
Notifications
You must be signed in to change notification settings - Fork 24
/
go.mod
executable file
·43 lines (39 loc) · 1.75 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
module github.com/luscis/openlan
go 1.16
replace (
github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.8.1
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20200604202706-70a84ac30bf9
golang.org/x/net => github.com/golang/net v0.0.0-20190812203447-cdfb69ac37fc
golang.org/x/sys => github.com/golang/sys v0.0.0-20190209173611-3b5209105503
golang.org/x/time => github.com/golang/time v0.0.0-20210220033141-f8bda1e9f3ba
)
exclude github.com/sirupsen/logrus v1.8.1
require (
github.com/Sirupsen/logrus v0.0.0-00010101000000-000000000000 // indirect
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
github.com/chzyer/logex v1.2.0 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/chzyer/test v0.0.0-20210722231415-061457976a23 // indirect
github.com/coreos/go-systemd/v22 v22.3.2
github.com/danieldin95/go-openvswitch v0.0.5
github.com/docker/libnetwork v0.5.6 // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-ldap/ldap v3.0.3+incompatible
github.com/go-logr/logr v1.1.0
github.com/go-logr/stdr v1.1.0
github.com/godbus/dbus v4.1.0+incompatible // indirect
github.com/gorilla/mux v1.8.0
github.com/moby/libnetwork v0.5.6
github.com/ovn-org/libovsdb v0.6.1-0.20220127023511-a619f0fd93be
github.com/shadowsocks/go-shadowsocks2 v0.1.5
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/stretchr/testify v1.7.0
github.com/urfave/cli/v2 v2.3.0
github.com/vishvananda/netlink v1.1.0
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df
github.com/xtaci/kcp-go/v5 v5.6.1
golang.org/x/net v0.0.0-20210525063256-abc453219eb5
golang.org/x/time v0.0.0-00010101000000-000000000000
gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d // indirect
gopkg.in/yaml.v2 v2.4.0
)