-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
42 lines (37 loc) · 1.42 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module github.com/friend0/go-meshcat
go 1.22.0
replace github.com/friend0/transformations => ./pkg/transformations
require (
github.com/friend0/transformations v0.0.0-00010101000000-000000000000
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.1
github.com/labstack/echo/v4 v4.12.0
github.com/nats-io/nats.go v1.35.0
github.com/vmihailenco/msgpack/v5 v5.4.1
gonum.org/v1/gonum v0.15.0
)
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/time v0.5.0 // indirect
)
require (
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/joho/godotenv v1.5.1
github.com/klauspost/compress v1.17.8 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/nats-io/nkeys v0.4.7 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pkg/errors v0.9.1
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.16.0 // indirect
)