matrix-pinecone/go.mod
0x1a8510f2 f106cfa910
Implement (*SessionProtocol).Close() (#60)
* Fix error message after switching from utp to quic

* Implement (*SessionProtocol).Close()

* Update deps

* Handle repeat calls to (*SessionProtocol).Close()
Based on https://github.com/lucas-clemente/quic-go/blob/master/server.go#L283

* Update deps again and fix related issues

* Use sync.Once instead of sync.Mutex+bool

Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
2022-08-25 12:45:29 +01:00

29 lines
1.2 KiB
Modula-2

module github.com/matrix-org/pinecone
go 1.14
require (
github.com/Arceliar/phony v0.0.0-20210209235338-dde1a8dca979
github.com/RyanCarrier/dijkstra v1.1.0
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/gorilla/websocket v1.5.0
github.com/klauspost/compress v1.15.9 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lucas-clemente/quic-go v0.28.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/vishvananda/netlink v1.1.0
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
go.uber.org/atomic v1.9.0
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/mobile v0.0.0-20220722155234-aaac322e2105
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462
golang.org/x/sys v0.0.0-20220730100132-1609e554cd39
golang.org/x/tools v0.1.12 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
golang.zx2c4.com/wireguard v0.0.0-20220703234212-c31a7b1ab478
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
nhooyr.io/websocket v1.8.7
)