mirror of
https://github.com/Pacerino/CaddyProxyManager.git
synced 2026-07-22 05:31:41 -04:00
Replace gorm.io/driver/sqlite (mattn/go-sqlite3, CGO) with github.com/glebarez/sqlite (modernc, pure Go). Builds and tests no longer need a C toolchain, fixing CI on runners without gcc. Drop the race detector from CI (it requires CGO) and build a static binary in Docker.
61 lines
2.2 KiB
Modula-2
61 lines
2.2 KiB
Modula-2
module github.com/Pacerino/CaddyProxyManager
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/aymerick/raymond v2.0.2+incompatible
|
|
github.com/coreos/go-oidc/v3 v3.18.0
|
|
github.com/glebarez/sqlite v1.11.0
|
|
github.com/go-chi/jwtauth/v5 v5.4.0
|
|
github.com/go-playground/validator/v10 v10.30.3
|
|
github.com/golang-jwt/jwt/v4 v4.5.2
|
|
github.com/lestrrat-go/jwx/v3 v3.1.1
|
|
golang.org/x/crypto v0.53.0
|
|
golang.org/x/oauth2 v0.36.0
|
|
gorm.io/gorm v1.31.1
|
|
)
|
|
|
|
require (
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
|
|
github.com/glebarez/go-sqlite v1.21.2 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/goccy/go-json v0.10.6 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
|
|
github.com/lestrrat-go/dsig v1.3.0 // indirect
|
|
github.com/lestrrat-go/dsig-secp256k1 v1.0.0 // indirect
|
|
github.com/lestrrat-go/httpcc v1.0.1 // indirect
|
|
github.com/lestrrat-go/httprc/v3 v3.0.6 // indirect
|
|
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.15 // indirect
|
|
github.com/mattn/go-isatty v0.0.22 // indirect
|
|
github.com/qri-io/jsonpointer v0.1.1 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/segmentio/asm v1.2.1 // indirect
|
|
github.com/valyala/fastjson v1.6.10 // indirect
|
|
golang.org/x/text v0.38.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
modernc.org/libc v1.22.5 // indirect
|
|
modernc.org/mathutil v1.5.0 // indirect
|
|
modernc.org/memory v1.5.0 // indirect
|
|
modernc.org/sqlite v1.23.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/coreos/go-systemd/v22 v22.7.0
|
|
github.com/fatih/color v1.19.0
|
|
github.com/go-chi/chi/v5 v5.3.0
|
|
github.com/go-chi/cors v1.2.2
|
|
github.com/godbus/dbus/v5 v5.2.2 // indirect
|
|
github.com/qri-io/jsonschema v0.2.1
|
|
github.com/vrischmann/envconfig v1.4.1
|
|
golang.org/x/sys v0.46.0 // indirect
|
|
)
|