mirror of
https://github.com/wahyd4/passkey-auth.git
synced 2026-08-09 04:15:55 +10:00
34 lines
1.1 KiB
AMPL
34 lines
1.1 KiB
AMPL
module passkey-auth
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/glebarez/go-sqlite v1.22.0
|
|
github.com/go-webauthn/webauthn v0.10.2
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/sessions v1.2.2
|
|
github.com/rs/cors v1.11.0
|
|
github.com/sirupsen/logrus v1.9.3
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
|
|
github.com/go-webauthn/x v0.1.9 // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
|
|
github.com/google/go-tpm v0.9.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gorilla/securecookie v1.1.2 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
golang.org/x/crypto v0.35.0 // indirect
|
|
golang.org/x/sys v0.30.0 // indirect
|
|
modernc.org/libc v1.37.6 // indirect
|
|
modernc.org/mathutil v1.6.0 // indirect
|
|
modernc.org/memory v1.7.2 // indirect
|
|
modernc.org/sqlite v1.28.0 // indirect
|
|
)
|