-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
67 lines (63 loc) · 2.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module github.com/delaneyj/gostar
go 1.22.1
require (
github.com/delaneyj/toolbelt v0.2.0
github.com/divan/num2words v0.0.0-20170904212200-57dba452f942
github.com/goccy/go-json v0.10.2
github.com/planetscale/vtprotobuf v0.6.0
github.com/samber/lo v1.38.1
github.com/stretchr/testify v1.8.4
github.com/valyala/bytebufferpool v1.0.0
google.golang.org/protobuf v1.31.0
k8s.io/apimachinery v0.28.4
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/smartystreets/goconvey v1.8.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/CAFxX/httpcompression v0.0.9 // indirect
github.com/andybalholm/brotli v1.0.6 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/chewxy/math32 v1.10.1 // indirect
github.com/denisbrodbeck/machineid v1.0.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-rod/rod v0.114.5 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0
github.com/google/uuid v1.4.0 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/igrmk/treemap/v2 v2.0.1
github.com/klauspost/compress v1.17.3 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/minio/highwayhash v1.0.2 // indirect
github.com/nats-io/jwt/v2 v2.5.3 // indirect
github.com/nats-io/nats-server/v2 v2.10.5 // indirect
github.com/nats-io/nats.go v1.31.0 // indirect
github.com/nats-io/nkeys v0.4.6 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rzajac/clock v0.2.0 // indirect
github.com/rzajac/zflake v0.8.0 // indirect
github.com/ysmood/fetchup v0.2.3 // indirect
github.com/ysmood/goob v0.4.0 // indirect
github.com/ysmood/got v0.38.1 // indirect
github.com/ysmood/gson v0.7.3 // indirect
github.com/ysmood/leakless v0.8.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
golang.org/x/sync v0.5.0
golang.org/x/sys v0.14.0 // indirect
golang.org/x/time v0.4.0 // indirect
modernc.org/libc v1.34.4 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.7.2 // indirect
modernc.org/sqlite v1.27.0 // indirect
zombiezen.com/go/sqlite v0.13.1 // indirect
)