-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (25 loc) · 1009 Bytes
/
go.mod
File metadata and controls
30 lines (25 loc) · 1009 Bytes
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
module github.com/opentracing-contrib/echo/examples
go 1.24
toolchain go1.24.2
replace github.com/flachnetz/echo-apm-middleware => ../
require (
github.com/flachnetz/echo-apm-middleware v0.0.0-00010101000000-000000000000
github.com/labstack/echo/v4 v4.13.4
github.com/opentracing/opentracing-go v1.2.0
github.com/uber/jaeger-client-go v2.30.0+incompatible
)
require (
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/uber/jaeger-lib v2.0.0+incompatible // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
go.uber.org/atomic v1.4.0 // indirect
golang.org/x/crypto v0.38.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.25.0 // indirect
)