database/go.mod

70 lines
3.1 KiB
Modula-2
Raw Normal View History

2023-04-18 18:18:19 +08:00
module git.zhangdeman.cn/zhangdeman/database
2022-05-15 11:27:28 +08:00
2023-11-23 16:24:09 +08:00
go 1.21
toolchain go1.21.3
2022-05-15 11:27:28 +08:00
require (
2024-05-08 14:36:30 +08:00
git.zhangdeman.cn/zhangdeman/consts v0.0.0-20240501142503-e31a270e50cc
2024-04-14 20:10:31 +08:00
git.zhangdeman.cn/zhangdeman/logger v0.0.0-20240308024848-54993a0ed4a6
2024-01-22 18:42:28 +08:00
git.zhangdeman.cn/zhangdeman/op_type v0.0.0-20240122104027-4928421213c0
2024-04-14 20:10:31 +08:00
git.zhangdeman.cn/zhangdeman/serialize v0.0.0-20240325080031-1f58204e8687
git.zhangdeman.cn/zhangdeman/wrapper v0.0.0-20240311031825-1e1db094998e
2024-05-08 14:36:30 +08:00
github.com/gin-gonic/gin v1.10.0
2022-05-15 11:27:28 +08:00
github.com/pkg/errors v0.9.1
2022-05-16 12:38:32 +08:00
github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2
2024-03-08 10:46:19 +08:00
go.uber.org/zap v1.27.0
2024-04-14 20:10:31 +08:00
gorm.io/driver/mysql v1.5.6
2024-03-08 10:46:19 +08:00
gorm.io/driver/sqlite v1.5.5
2024-04-26 21:40:07 +08:00
gorm.io/gorm v1.25.10
2022-05-15 11:27:28 +08:00
)
require (
2024-04-14 20:10:31 +08:00
filippo.io/edwards25519 v1.1.0 // indirect
git.zhangdeman.cn/zhangdeman/easymap v0.0.0-20240311030808-e2a2e6a3c211 // indirect
git.zhangdeman.cn/zhangdeman/gin v0.0.0-20240315025001-0ffe074179ad // indirect
2024-01-13 17:08:47 +08:00
git.zhangdeman.cn/zhangdeman/util v0.0.0-20231227095334-7eb5cdbf9253 // indirect
2023-08-11 14:01:18 +08:00
github.com/BurntSushi/toml v1.3.2 // indirect
2023-02-09 11:54:58 +08:00
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394 // indirect
2024-04-26 21:40:07 +08:00
github.com/bytedance/sonic v1.11.6 // indirect
github.com/bytedance/sonic/loader v0.1.1 // indirect
2023-07-30 18:49:49 +08:00
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
2023-11-23 16:24:09 +08:00
github.com/chenzhuoyu/iasm v0.9.1 // indirect
2024-04-26 21:40:07 +08:00
github.com/cloudwego/base64x v0.1.4 // indirect
github.com/cloudwego/iasm v0.2.0 // indirect
2023-10-13 22:16:48 +08:00
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
2022-05-15 11:27:28 +08:00
github.com/gin-contrib/sse v0.1.0 // indirect
2023-02-09 11:54:58 +08:00
github.com/go-ini/ini v1.67.0 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
2024-05-08 14:36:30 +08:00
github.com/go-playground/validator/v10 v10.20.0 // indirect
2024-04-14 20:10:31 +08:00
github.com/go-sql-driver/mysql v1.8.1 // indirect
2023-04-09 02:39:36 +08:00
github.com/goccy/go-json v0.10.2 // indirect
2022-05-15 11:27:28 +08:00
github.com/jinzhu/inflection v1.0.0 // indirect
2022-10-15 16:42:28 +08:00
github.com/jinzhu/now v1.1.5 // indirect
2023-02-09 11:54:58 +08:00
github.com/json-iterator/go v1.1.12 // indirect
2024-03-08 10:46:19 +08:00
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
2022-05-15 11:27:28 +08:00
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect
github.com/lestrrat-go/strftime v1.0.6 // indirect
2023-11-23 16:24:09 +08:00
github.com/mattn/go-isatty v0.0.20 // indirect
2024-03-08 10:46:19 +08:00
github.com/mattn/go-sqlite3 v1.14.22 // indirect
2023-05-30 18:15:24 +08:00
github.com/mitchellh/go-homedir v1.1.0 // indirect
2023-02-09 11:54:58 +08:00
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
2023-07-30 18:49:49 +08:00
github.com/mozillazg/go-pinyin v0.20.0 // indirect
2024-05-08 14:36:30 +08:00
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
2022-05-16 12:38:32 +08:00
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
2023-12-06 16:02:33 +08:00
github.com/ugorji/go/codec v1.2.12 // indirect
2023-04-09 02:39:36 +08:00
go.uber.org/multierr v1.11.0 // indirect
2024-05-08 14:36:30 +08:00
golang.org/x/arch v0.8.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
2024-01-15 15:20:27 +08:00
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
2024-05-08 14:36:30 +08:00
google.golang.org/protobuf v1.34.1 // indirect
2023-02-09 11:54:58 +08:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2022-05-15 11:27:28 +08:00
)