-
Notifications
You must be signed in to change notification settings - Fork 23
/
go.mod
42 lines (38 loc) · 1.37 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/anthdm/raptor
go 1.21.0
require (
github.com/anthdm/hollywood v0.0.0-20240101185755-da5c2fd388a9
github.com/go-chi/chi/v5 v5.0.11
github.com/google/uuid v1.5.0
github.com/lib/pq v1.10.9
github.com/stealthrocket/net v0.2.1
github.com/stretchr/testify v1.8.4
github.com/tetratelabs/wazero v1.6.0
google.golang.org/protobuf v1.30.0
)
require (
github.com/DataDog/gostackparse v0.7.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/grandcat/zeroconf v1.0.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/miekg/dns v1.1.27 // indirect
github.com/planetscale/vtprotobuf v0.4.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/zeebo/errs v1.2.2 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/exp v0.0.0-20231214170342-aacd6d4b4611 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.53.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
storj.io/drpc v0.0.32 // indirect
)
require (
github.com/go-chi/chi v1.5.5
github.com/pelletier/go-toml/v2 v2.1.1
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.14.0 // indirect
)