Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ai3/go-common
1 result
Show changes
Commits on Source (2)
module git.autistici.org/ai3/go-common module git.autistici.org/ai3/go-common
go 1.14 go 1.21
toolchain go1.22.1
require ( require (
github.com/NYTimes/gziphandler v1.1.1 github.com/NYTimes/gziphandler v1.1.1
...@@ -8,11 +10,11 @@ require ( ...@@ -8,11 +10,11 @@ require (
github.com/bbrks/wrap/v2 v2.5.0 github.com/bbrks/wrap/v2 v2.5.0
github.com/cenkalti/backoff/v4 v4.3.0 github.com/cenkalti/backoff/v4 v4.3.0
github.com/coreos/go-systemd/v22 v22.5.0 github.com/coreos/go-systemd/v22 v22.5.0
github.com/duo-labs/webauthn v0.0.0-20220330035159-03696f3d4499
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594
github.com/fxamacker/cbor/v2 v2.4.0 github.com/fxamacker/cbor/v2 v2.6.0
github.com/go-asn1-ber/asn1-ber v1.5.7 github.com/go-asn1-ber/asn1-ber v1.5.7
github.com/go-ldap/ldap/v3 v3.4.4 github.com/go-ldap/ldap/v3 v3.4.4
github.com/go-webauthn/webauthn v0.10.2
github.com/gofrs/flock v0.8.0 github.com/gofrs/flock v0.8.0
github.com/google/go-cmp v0.6.0 github.com/google/go-cmp v0.6.0
github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40 github.com/lunixbochs/struc v0.0.0-20200707160740-784aaebc1d40
...@@ -29,3 +31,27 @@ require ( ...@@ -29,3 +31,27 @@ require (
golang.org/x/crypto v0.27.0 golang.org/x/crypto v0.27.0
golang.org/x/sync v0.8.0 golang.org/x/sync v0.8.0
) )
require (
github.com/Azure/go-ntlmssp v0.0.0-20220621081337-cb9428e4ac1e // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-webauthn/x v0.1.9 // indirect
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-tpm v0.9.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/openzipkin/zipkin-go v0.4.0 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/x448/float16 v0.8.4 // indirect
go.opentelemetry.io/otel/metric v0.31.0 // indirect
golang.org/x/sys v0.25.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)
This diff is collapsed.
...@@ -23,8 +23,8 @@ import ( ...@@ -23,8 +23,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/duo-labs/webauthn/protocol/webauthncose" "github.com/go-webauthn/webauthn/protocol/webauthncose"
"github.com/duo-labs/webauthn/webauthn" "github.com/go-webauthn/webauthn/webauthn"
"github.com/fxamacker/cbor/v2" "github.com/fxamacker/cbor/v2"
) )
......