-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
60 lines (57 loc) · 2.39 KB
/
go.mod
File metadata and controls
60 lines (57 loc) · 2.39 KB
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
module github.com/rytsh/repeatit
go 1.24
require (
github.com/BurntSushi/toml v1.5.0
github.com/Masterminds/sprig/v3 v3.3.0
github.com/rakunlabs/ada v0.2.7
github.com/rakunlabs/ada/handler/folder v0.1.1
github.com/rakunlabs/ada/middleware/cors v0.1.3
github.com/rakunlabs/ada/middleware/encoding v0.1.0
github.com/rakunlabs/ada/middleware/log v0.1.7
github.com/rakunlabs/ada/middleware/recover v0.1.3
github.com/rakunlabs/ada/middleware/requestid v0.1.3
github.com/rakunlabs/ada/middleware/server v0.1.0
github.com/rakunlabs/ada/middleware/telemetry v0.1.0
github.com/rakunlabs/chu v0.2.6
github.com/rakunlabs/into v0.4.2
github.com/rakunlabs/logi v0.4.5
sigs.k8s.io/yaml v1.6.0
)
require (
dario.cat/mergo v1.0.2 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.4.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/goccy/go-yaml v1.18.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-envparse v0.1.0 // indirect
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
github.com/huandu/xstrings v1.5.0 // indirect
github.com/lmittmann/tint v1.1.2 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/oklog/ulid/v2 v2.1.1 // indirect
github.com/rs/zerolog v1.34.0 // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/twmb/tlscfg v1.2.1 // indirect
github.com/worldline-go/klient v0.9.13 // indirect
github.com/worldline-go/logz v0.5.1 // indirect
github.com/worldline-go/struct2 v1.3.1 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.62.0 // indirect
go.opentelemetry.io/otel v1.37.0 // indirect
go.opentelemetry.io/otel/metric v1.37.0 // indirect
go.opentelemetry.io/otel/trace v1.37.0 // indirect
go.yaml.in/yaml/v2 v2.4.2 // indirect
golang.org/x/crypto v0.40.0 // indirect
golang.org/x/net v0.42.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/text v0.28.0 // indirect
)