util/go.mod

26 lines
716 B
Modula-2
Raw Normal View History

2022-05-14 13:45:51 +08:00
module git.zhangdeman.cn/zhangdeman/util
2023-04-09 02:37:42 +08:00
go 1.20
2022-05-14 14:01:21 +08:00
require (
2022-07-09 14:42:31 +08:00
github.com/Jeffail/gabs v1.4.0
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394
2023-02-11 21:14:57 +08:00
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-ini/ini v1.67.0
2023-04-20 16:58:12 +08:00
github.com/mitchellh/go-homedir v1.1.0
2023-07-01 22:53:14 +08:00
github.com/mozillazg/go-pinyin v0.20.0
2023-04-20 16:58:12 +08:00
github.com/mssola/user_agent v0.6.0
2022-05-14 14:01:21 +08:00
github.com/pkg/errors v0.9.1
github.com/spaolacci/murmur3 v1.1.0
2023-04-09 02:37:42 +08:00
github.com/stretchr/testify v1.8.2
2023-02-11 21:14:57 +08:00
github.com/tidwall/gjson v1.14.4
2022-06-26 16:11:30 +08:00
gopkg.in/yaml.v3 v3.0.1
2022-05-14 14:01:21 +08:00
)
2022-07-02 13:24:29 +08:00
2022-07-04 11:58:34 +08:00
require (
2023-03-30 16:22:56 +08:00
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
2022-07-04 13:37:16 +08:00
github.com/tidwall/match v1.1.1 // indirect
2023-02-11 21:14:57 +08:00
github.com/tidwall/pretty v1.2.1 // indirect
2022-07-04 11:58:34 +08:00
)