-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
37 lines (34 loc) · 1.26 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
module github.com/nixys/nxs-data-anonymizer
go 1.21.1
require (
github.com/Masterminds/sprig/v3 v3.2.3
github.com/docker/go-units v0.5.0
github.com/go-sql-driver/mysql v1.7.1
github.com/nixys/nxs-go-appctx/v3 v3.0.0
github.com/nixys/nxs-go-conf v1.1.0
github.com/nixys/nxs-go-fsm v1.0.0
github.com/pborman/getopt/v2 v2.1.0
github.com/sirupsen/logrus v1.9.3
gorm.io/driver/mysql v1.5.1
gorm.io/gorm v1.25.2
)
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.1 // indirect
github.com/cskr/pubsub v1.0.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/stretchr/testify v1.8.0 // indirect
golang.org/x/crypto v0.11.0 // indirect
golang.org/x/sys v0.10.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)