-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
27 lines (24 loc) · 850 Bytes
/
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
module parcel-tracking
go 1.19
require (
github.com/RomaBilka/parcel-tracking v0.0.0-20221208132427-70e54fdf8338
github.com/aws/aws-lambda-go v1.37.0
github.com/google/go-querystring v1.1.0
github.com/jessevdk/go-flags v1.5.0
github.com/stretchr/testify v1.8.1
github.com/valyala/fasthttp v1.44.0
go.uber.org/zap v1.24.0
golang.org/x/sync v0.1.0
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)