mirror of
https://github.com/8lecramm/derohe-proxy.git
synced 2025-01-10 05:47:56 +00:00
36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
|
module derohe-proxy
|
||
|
|
||
|
go 1.18
|
||
|
|
||
|
require (
|
||
|
github.com/chzyer/readline v1.5.0
|
||
|
github.com/deroproject/derohe v0.0.0-20220502125456-607af6dfdc9a
|
||
|
github.com/deroproject/graviton v0.0.0-20220130070622-2c248a53b2e1
|
||
|
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
|
||
|
github.com/gorilla/websocket v1.5.0
|
||
|
github.com/lesismal/llib v1.1.6
|
||
|
github.com/lesismal/nbio v1.2.18
|
||
|
)
|
||
|
|
||
|
require (
|
||
|
github.com/blang/semver/v4 v4.0.0 // indirect
|
||
|
github.com/caarlos0/env/v6 v6.9.1 // indirect
|
||
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||
|
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
|
||
|
github.com/go-logr/logr v1.2.3 // indirect
|
||
|
github.com/go-logr/zapr v1.2.3 // indirect
|
||
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
||
|
github.com/satori/go.uuid v1.2.0 // indirect
|
||
|
github.com/stretchr/testify v1.7.1 // indirect
|
||
|
github.com/x448/float16 v0.8.4 // indirect
|
||
|
go.uber.org/atomic v1.7.0 // indirect
|
||
|
go.uber.org/multierr v1.6.0 // indirect
|
||
|
go.uber.org/zap v1.21.0 // indirect
|
||
|
golang.org/x/crypto v0.0.0-20210513122933-cd7d49e622d5 // indirect
|
||
|
golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect
|
||
|
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
|
||
|
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
|
||
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
||
|
)
|