source: code/trunk/go.mod@ 747

Last change on this file since 747 was 741, checked in by contact, 4 years ago

Use golang.org/x/time/rate

Instead of hand-rolling our own rate-limiter based on goroutines,
use golang.org/x/time/rate.

File size: 981 bytes
Line 
1module git.sr.ht/~emersion/soju
2
3go 1.13
4
5require (
6 git.sr.ht/~emersion/go-scfg v0.0.0-20201019143924-142a8aa629fc
7 git.sr.ht/~sircmpwn/go-bare v0.0.0-20210406120253-ab86bc2846d9
8 github.com/cespare/xxhash/v2 v2.1.2 // indirect
9 github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac
10 github.com/golang/protobuf v1.5.2 // indirect
11 github.com/klauspost/compress v1.13.6 // indirect
12 github.com/lib/pq v1.10.4
13 github.com/mattn/go-sqlite3 v1.14.9
14 github.com/pires/go-proxyproto v0.6.1
15 github.com/prometheus/client_golang v1.11.0
16 github.com/prometheus/common v0.32.1 // indirect
17 github.com/prometheus/procfs v0.7.3 // indirect
18 golang.org/x/crypto v0.0.0-20211115234514-b4de73f9ece8
19 golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c // indirect
20 golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
21 golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
22 google.golang.org/protobuf v1.27.1 // indirect
23 gopkg.in/irc.v3 v3.1.4
24 nhooyr.io/websocket v1.8.7
25)
Note: See TracBrowser for help on using the repository browser.