41 lines
1.4 KiB
Modula-2
41 lines
1.4 KiB
Modula-2
module server
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/beego/beego/v2 v2.1.0
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
|
|
)
|
|
|
|
require (
|
|
github.com/go-sql-driver/mysql v1.7.0
|
|
github.com/smartystreets/goconvey v1.6.4
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
github.com/jtolds/gls v4.20.0+incompatible // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/prometheus/client_golang v1.15.1 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.42.0 // indirect
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
|
github.com/shiena/ansicolor v0.0.0-20200904210342-c7312218db18 // indirect
|
|
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
exclude github.com/mattn/go-sqlite3 v1.14.31
|