-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (19 loc) · 680 Bytes
/
go.mod
File metadata and controls
23 lines (19 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/craumix/onionmsg
go 1.17
require (
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.5.0
github.com/klauspost/compress v1.15.4
github.com/stretchr/testify v1.7.1
github.com/wybiral/torgo v0.0.0-20201209223426-5fd9910eab31
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210716203947-853a461950ff
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
)
require github.com/sirupsen/logrus v1.8.1
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rs/cors v1.9.0
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)