74 lines
2.8 KiB
Modula-2
74 lines
2.8 KiB
Modula-2
module electricity_bill_calc
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/fufuok/utils v0.10.2
|
|
github.com/georgysavva/scany/v2 v2.0.0
|
|
github.com/gofiber/fiber/v2 v2.46.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/jackc/pgx/v5 v5.3.1
|
|
github.com/jinzhu/copier v0.3.5
|
|
github.com/liamylian/jsontime/v2 v2.0.0
|
|
github.com/mozillazg/go-pinyin v0.20.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rueian/rueidis v0.0.100
|
|
github.com/samber/lo v1.38.1
|
|
github.com/shopspring/decimal v1.3.1
|
|
github.com/spf13/viper v1.16.0
|
|
github.com/valyala/fasthttp v1.47.0
|
|
github.com/xuri/excelize/v2 v2.7.1
|
|
go.uber.org/zap v1.24.0
|
|
golang.org/x/sync v0.2.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/puddle/v2 v2.2.0 // indirect
|
|
github.com/klauspost/compress v1.16.6 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/philhofer/fwd v1.1.2 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
|
|
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
|
|
github.com/tinylib/msgp v1.1.8 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/doug-martin/goqu/v9 v9.18.0
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
github.com/richardlehane/mscfb v1.0.4 // indirect
|
|
github.com/richardlehane/msoleps v1.0.3 // indirect
|
|
github.com/spf13/afero v1.9.5 // indirect
|
|
github.com/spf13/cast v1.5.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/xuri/efp v0.0.0-20230422071738-01f4e37c47e9 // indirect
|
|
github.com/xuri/nfp v0.0.0-20230503010013-3f38cdbb0b83 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.10.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.9.0 // indirect
|
|
golang.org/x/text v0.10.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|