Skip to content

Commit

Permalink
Optimize log masker
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Yastrebtsov authored and Mike Yastrebtsov committed Oct 25, 2024
1 parent d72abaa commit d001ea6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 830 deletions.
36 changes: 3 additions & 33 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,62 +1,35 @@
module git.acronis.com/abc/go-libs
module github.com/acronis/go-appkit

go 1.20

require (
code.cloudfoundry.org/bytefmt v0.0.0-20240808182453-a379845013d9
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/RussellLuo/slidingwindow v0.0.0-20200528002341-535bb99d338b
github.com/acronis/go-appkit v1.1.0
github.com/cenkalti/backoff/v4 v4.3.0
github.com/cloudflare/ahocorasick v0.0.0-20240916140611-054963ec9396
github.com/denisenkom/go-mssqldb v0.11.0
github.com/doug-martin/goqu/v9 v9.13.0
github.com/go-chi/chi/v5 v5.1.0
github.com/go-sql-driver/mysql v1.6.0
github.com/gocraft/dbr/v2 v2.7.6
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/google/uuid v1.4.0
github.com/hashicorp/golang-lru v1.0.2
github.com/jackc/pgconn v1.14.3
github.com/jackc/pgx/v4 v4.18.3
github.com/lib/pq v1.10.4
github.com/mattn/go-sqlite3 v1.14.16
github.com/mendsley/gojwk v0.0.0-20141217222730-4d5ec6e58103
github.com/mitchellh/mapstructure v1.5.0
github.com/opentracing/opentracing-go v1.2.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.19.1
github.com/rs/xid v1.5.0
github.com/rubenv/sql-migrate v1.0.0
github.com/spf13/cast v1.7.0
github.com/spf13/viper v1.19.0
github.com/ssgreg/logf v1.4.2
github.com/ssgreg/logftext v1.1.1
github.com/stretchr/testify v1.9.0
github.com/throttled/throttled/v2 v2.12.0
github.com/uber/jaeger-client-go v2.22.1+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible
github.com/vasayxtx/go-glob v1.2.0
go.uber.org/atomic v1.11.0
golang.org/x/sync v0.8.0
golang.org/x/time v0.6.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/gobuffalo/packr/v2 v2.8.3 // indirect
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
Expand All @@ -69,14 +42,11 @@ require (
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.17.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/gorp.v1 v1.7.2 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit d001ea6

Please sign in to comment.