mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
The new qtls versions contain the standard library fix for https://github.com/golang/go/issues/49126.
31 lines
1.1 KiB
Modula-2
31 lines
1.1 KiB
Modula-2
module github.com/lucas-clemente/quic-go
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/francoispqt/gojay v1.2.13
|
|
github.com/golang/mock v1.6.0
|
|
github.com/marten-seemann/qpack v0.2.1
|
|
github.com/marten-seemann/qtls-go1-18 v0.1.3
|
|
github.com/marten-seemann/qtls-go1-19 v0.1.1
|
|
github.com/onsi/ginkgo v1.16.4
|
|
github.com/onsi/gomega v1.13.0
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
|
|
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
|
|
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.4.9 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
|
|
github.com/nxadm/tail v1.4.8 // indirect
|
|
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/tools v0.1.10 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|