mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 20:02:27 +08:00
85 lines
2.7 KiB
Modula-2
85 lines
2.7 KiB
Modula-2
module hk4e
|
|
|
|
go 1.19
|
|
|
|
// toml
|
|
require github.com/BurntSushi/toml v0.3.1
|
|
|
|
// kcp
|
|
require (
|
|
github.com/klauspost/reedsolomon v1.9.14
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/templexxx/xorsimd v0.4.1
|
|
github.com/tjfoc/gmsm v1.4.1
|
|
github.com/xtaci/lossyconn v0.0.0-20200209145036-adba10fffc37
|
|
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be
|
|
golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9
|
|
)
|
|
|
|
// protobuf
|
|
require google.golang.org/protobuf v1.28.0
|
|
|
|
// gin
|
|
require github.com/gin-gonic/gin v1.6.3
|
|
|
|
// mongodb
|
|
require go.mongodb.org/mongo-driver v1.8.3
|
|
|
|
// nats
|
|
require github.com/nats-io/nats.go v1.19.0
|
|
|
|
// msgpack
|
|
require github.com/vmihailenco/msgpack/v5 v5.3.5
|
|
|
|
// statsviz
|
|
require github.com/arl/statsviz v0.5.1
|
|
|
|
// jwt
|
|
require github.com/golang-jwt/jwt/v4 v4.4.0
|
|
|
|
// csv
|
|
require github.com/jszwec/csvutil v1.7.1
|
|
|
|
require (
|
|
github.com/byebyebruce/natsrpc v0.5.5-0.20221125150611-56cd29a4e335
|
|
github.com/spf13/cobra v1.6.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.2.0 // indirect
|
|
github.com/go-stack/stack v1.8.0 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/klauspost/compress v1.15.11 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
|
|
github.com/nats-io/nats-server/v2 v2.9.7 // indirect
|
|
github.com/nats-io/nkeys v0.3.0 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/templexxx/cpu v0.0.1 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.0.2 // indirect
|
|
github.com/xdg-go/stringprep v1.0.2 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
|
|
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
|
|
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|