mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
65 lines
2.4 KiB
Modula-2
65 lines
2.4 KiB
Modula-2
module github.com/criyle/go-judge
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/creack/pty v1.1.14
|
|
github.com/criyle/go-sandbox v0.8.2
|
|
github.com/elastic/go-seccomp-bpf v1.1.0
|
|
github.com/elastic/go-ucfg v0.8.3
|
|
github.com/gin-contrib/pprof v1.3.0
|
|
github.com/gin-contrib/zap v0.0.1
|
|
github.com/gin-gonic/gin v1.7.4
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
|
github.com/koding/multiconfig v0.0.0-20171124222453-69c27309b2d7
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/zsais/go-gin-prometheus v0.1.0
|
|
go.uber.org/zap v1.19.0
|
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
|
|
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
golang.org/x/sys v0.0.0-20210818153620-00dd8d7831e7
|
|
google.golang.org/grpc v1.40.0
|
|
google.golang.org/protobuf v1.27.1
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v0.4.1 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/fatih/camelcase v1.0.0 // indirect
|
|
github.com/fatih/structs v1.1.0 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.9.0 // indirect
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/mattn/go-isatty v0.0.13 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.30.0 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
github.com/sirupsen/logrus v1.8.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.6 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/multierr v1.7.0 // indirect
|
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20210818220304-27ea9cc85d9f // indirect
|
|
)
|
|
|
|
retract (
|
|
// File descripter leak when multiple container fork at the same time
|
|
[v0.9.5, v1.1.4]
|
|
// Old version, don't use
|
|
[v0.0.1, v0.9.4]
|
|
)
|