An AUR (Arch User Repository) mirror service written in Go
1module github.com/haileyok/myaur 2 3go 1.25.3 4 5require ( 6 github.com/labstack/echo/v4 v4.13.4 7 github.com/labstack/gommon v0.4.2 8 github.com/urfave/cli/v2 v2.27.7 9 golang.org/x/sync v0.14.0 10 gorm.io/driver/sqlite v1.6.0 11 gorm.io/gorm v1.31.0 12) 13 14require ( 15 github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect 16 github.com/jinzhu/inflection v1.0.0 // indirect 17 github.com/jinzhu/now v1.1.5 // indirect 18 github.com/mattn/go-colorable v0.1.14 // indirect 19 github.com/mattn/go-isatty v0.0.20 // indirect 20 github.com/mattn/go-sqlite3 v1.14.22 // indirect 21 github.com/russross/blackfriday/v2 v2.1.0 // indirect 22 github.com/valyala/bytebufferpool v1.0.0 // indirect 23 github.com/valyala/fasttemplate v1.2.2 // indirect 24 github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect 25 golang.org/x/crypto v0.38.0 // indirect 26 golang.org/x/net v0.40.0 // indirect 27 golang.org/x/sys v0.33.0 // indirect 28 golang.org/x/text v0.25.0 // indirect 29)