36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
module yggdrasil-go
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/google/uuid v1.3.0
|
|
github.com/hashicorp/golang-lru v0.5.4
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8
|
|
gopkg.in/ini.v1 v1.66.4
|
|
gorm.io/driver/sqlite v1.2.6
|
|
gorm.io/gorm v1.22.3
|
|
)
|
|
|
|
require (
|
|
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.4.1 // indirect
|
|
github.com/golang/protobuf v1.3.3 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/kr/pretty v0.3.0 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.9 // 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/ugorji/go/codec v1.1.7 // indirect
|
|
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
|
)
|