mirror of
https://github.com/daeuniverse/dae.git
synced 2024-12-22 21:34:58 +07:00
63 lines
2.9 KiB
Modula-2
63 lines
2.9 KiB
Modula-2
module github.com/daeuniverse/dae
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/adrg/xdg v0.4.0
|
|
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df
|
|
github.com/bits-and-blooms/bloom/v3 v3.3.1
|
|
github.com/cilium/ebpf v0.0.0-20230314095333-3945fa593427
|
|
github.com/daeuniverse/dae-config-dist/go/dae_config v0.0.0-20230314065856-e49435a874d8
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/json-iterator/go v1.1.12
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
|
|
github.com/mzz2017/softwind v0.0.0-20230501115403-98d9a7116d72
|
|
github.com/okzk/sdnotify v0.0.0-20180710141335-d9becc38acbd
|
|
github.com/safchain/ethtool v0.0.0-20230116090318-67cc41908669
|
|
github.com/sirupsen/logrus v1.9.0
|
|
github.com/spf13/cobra v1.6.1
|
|
github.com/v2rayA/ahocorasick-domain v0.0.0-20230218160829-122a074c48c8
|
|
github.com/vishvananda/netlink v1.1.0
|
|
github.com/x-cray/logrus-prefixed-formatter v0.5.2
|
|
golang.org/x/crypto v0.5.0
|
|
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2
|
|
golang.org/x/net v0.5.0
|
|
golang.org/x/sys v0.4.0
|
|
google.golang.org/protobuf v1.28.1
|
|
)
|
|
|
|
require (
|
|
github.com/bits-and-blooms/bitset v1.3.1 // indirect
|
|
github.com/dgryski/go-camellia v0.0.0-20191119043421-69a8a13fb23d // indirect
|
|
github.com/dgryski/go-idea v0.0.0-20170306091226-d2fb45a411fb // indirect
|
|
github.com/dgryski/go-metro v0.0.0-20200812162917-85c65e2d0165 // indirect
|
|
github.com/dgryski/go-rc2 v0.0.0-20150621095337-8a9021637152 // indirect
|
|
github.com/eknkc/basex v1.0.1 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/mzz2017/disk-bloom v1.0.1 // indirect
|
|
github.com/onsi/ginkgo v1.16.5 // indirect
|
|
github.com/onsi/gomega v1.26.0 // indirect
|
|
github.com/seiflotfy/cuckoofilter v0.0.0-20220411075957-e3b120b3f5fb // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/stretchr/testify v1.8.1 // indirect
|
|
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
|
|
gitlab.com/yawning/chacha20.git v0.0.0-20190903091407-6d1cb28dc72c // indirect
|
|
golang.org/x/term v0.4.0 // indirect
|
|
golang.org/x/text v0.6.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
|
|
google.golang.org/grpc v1.52.0 // indirect
|
|
)
|
|
|
|
//replace github.com/mzz2017/softwind => /home/mzz/goProjects/softwind
|
|
|
|
//replace github.com/cloudflare/ahocorasick => /home/mzz/goProjects/ahocorasick
|
|
//replace github.com/cilium/ebpf => /home/mzz/goProjects/ebpf
|
|
//replace github.com/daeuniverse/dae-config-dist/go/dae_config => /home/mzz/antlrProjects/dae-config/build/go/dae_config
|