implement sonic for json + remove some TODOs from readme + fix go version requirement (#5)

This commit is contained in:
dogghi no 2025-04-17 14:16:30 +02:00 committed by GitHub
parent 4a15dd0761
commit e35bd2fe57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 70 additions and 47 deletions

10
go.mod
View file

@ -1,9 +1,12 @@
module govd
go 1.24.0
go 1.23.0
toolchain go1.24.2
require (
github.com/PaulSonOfLars/gotgbot/v2 v2.0.0-rc.31
github.com/bytedance/sonic v1.13.2
github.com/google/uuid v1.6.0
github.com/guregu/null/v6 v6.0.0
github.com/joho/godotenv v1.5.1
@ -15,8 +18,13 @@ require (
)
require (
github.com/bytedance/sonic/loader v0.2.4 // indirect
github.com/cloudwego/base64x v0.1.5 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/stretchr/testify v1.10.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
)
require (