study_xxqg/go.mod

77 lines
3.4 KiB
Modula-2
Raw Normal View History

2021-11-12 07:46:33 +00:00
module github.com/huoxue1/study_xxqg
go 1.17
replace github.com/willf/bitset v1.2.1 => github.com/bits-and-blooms/bitset v1.2.1
require (
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f
2022-05-27 13:37:16 +00:00
github.com/dustin/go-humanize v1.0.0
github.com/gin-gonic/gin v1.7.1
2021-12-06 05:31:05 +00:00
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.4.0-beta.0
github.com/google/uuid v1.3.0
2021-11-12 07:46:33 +00:00
github.com/guonaihong/gout v0.2.9
github.com/imroc/req/v3 v3.8.2
2022-05-27 13:37:16 +00:00
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/klauspost/compress v1.15.5
2021-11-12 07:46:33 +00:00
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
2021-12-06 05:31:05 +00:00
github.com/makiuchi-d/gozxing v0.1.1
github.com/mxschmitt/playwright-go v0.1400.0
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/robfig/cron/v3 v3.0.0
2021-11-12 07:46:33 +00:00
github.com/sirupsen/logrus v1.8.1
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
2021-11-12 07:46:33 +00:00
github.com/t-tomalak/logrus-easy-formatter v0.0.0-20190827215021-c074f06c5816
2022-04-20 13:31:46 +00:00
github.com/tidwall/gjson v1.12.1
golang.org/x/image v0.0.0-20211028202545-6944b10bf410
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
2022-03-18 02:13:35 +00:00
modernc.org/sqlite v1.15.2
2021-11-12 07:46:33 +00:00
)
require (
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
2022-04-20 13:31:46 +00:00
github.com/gin-contrib/sse v0.1.0 // indirect
2021-11-12 07:46:33 +00:00
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
2022-04-20 13:31:46 +00:00
github.com/go-playground/validator/v10 v10.5.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
2021-11-12 07:46:33 +00:00
github.com/jonboulle/clockwork v0.2.2 // indirect
2022-04-20 13:31:46 +00:00
github.com/json-iterator/go v1.1.10 // indirect
2022-03-18 02:13:35 +00:00
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
2022-04-20 13:31:46 +00:00
github.com/leodido/go-urn v1.2.1 // indirect
2021-11-12 07:46:33 +00:00
github.com/lestrrat-go/strftime v1.0.5 // indirect
2022-04-20 13:31:46 +00:00
github.com/mattn/go-colorable v0.1.12 // indirect
2021-11-12 07:46:33 +00:00
github.com/mattn/go-isatty v0.0.14 // indirect
2022-04-20 13:31:46 +00:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
2022-03-18 02:00:05 +00:00
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
2021-11-12 07:46:33 +00:00
github.com/pkg/errors v0.9.1 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
2021-11-12 07:46:33 +00:00
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
2022-04-20 13:31:46 +00:00
github.com/ugorji/go/codec v1.2.5 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
2022-03-18 02:13:35 +00:00
golang.org/x/mod v0.3.0 // indirect
golang.org/x/net v0.0.0-20220111093109-d55c255bac03 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/text v0.3.7 // indirect
2022-03-18 02:13:35 +00:00
golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2022-04-20 13:31:46 +00:00
google.golang.org/protobuf v1.27.1 // indirect
2022-03-18 02:00:05 +00:00
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
2021-11-12 07:46:33 +00:00
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
2022-04-20 13:31:46 +00:00
gopkg.in/yaml.v2 v2.2.8 // indirect
2022-03-18 02:13:35 +00:00
lukechampine.com/uint128 v1.1.1 // indirect
modernc.org/cc/v3 v3.35.24 // indirect
modernc.org/ccgo/v3 v3.15.17 // indirect
2022-03-18 02:04:39 +00:00
modernc.org/libc v1.14.11 // indirect
modernc.org/mathutil v1.4.1 // indirect
2022-03-18 02:04:39 +00:00
modernc.org/memory v1.0.6 // indirect
2022-03-18 02:13:35 +00:00
modernc.org/opt v0.1.1 // indirect
modernc.org/strutil v1.1.1 // indirect
modernc.org/token v1.0.0 // indirect
2021-11-12 07:46:33 +00:00
)