-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
42 lines (39 loc) · 1.59 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module github.com/go-webauthn/example
go 1.17
require (
github.com/fasthttp/router v1.4.6
github.com/fasthttp/session/v2 v2.4.7
github.com/go-webauthn/webauthn v0.2.1
github.com/google/uuid v1.3.0
github.com/knadh/koanf v1.4.0
github.com/mitchellh/mapstructure v1.4.3
github.com/spf13/pflag v1.0.5
github.com/tstranex/u2f v1.0.0
github.com/valyala/fasthttp v1.33.0
go.uber.org/zap v1.21.0
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/cloudflare/cfssl v1.5.0 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/golang-jwt/jwt/v4 v4.3.0 // indirect
github.com/google/certificate-transparency-go v1.0.21 // indirect
github.com/klauspost/compress v1.14.1 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/philhofer/fwd v1.1.1 // indirect
github.com/savsgio/dictpool v0.0.0-20220201165159-a5d561a1a2c9 // indirect
github.com/savsgio/gotils v0.0.0-20220201163454-d252f0a44d5b // indirect
github.com/tinylib/msgp v1.1.6 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)