mirror of
https://github.com/hanzoai/world.git
synced 2026-08-05 04:22:23 +00:00
The import path is unchanged; v9.22.0 renames the package identifier from redis to kv, so every qualifier in internal/world/kv moves with it: redis.Client -> kv.Client, redis.NewClient/Options -> kv.NewClient/Options, redis.Nil -> kv.Nil, redis.ErrClosed -> kv.ErrClosed. Our own package is also called kv, which is legal Go: the package clause declares nothing in file scope, so the bare identifiers (Client, Open) are ours and the qualified ones (kv.Client) are the client library's.
32 lines
1.1 KiB
AMPL
32 lines
1.1 KiB
AMPL
module github.com/hanzoai/world
|
|
|
|
go 1.26.4
|
|
|
|
require (
|
|
github.com/alicebob/miniredis/v2 v2.38.0
|
|
github.com/hanzoai/sqlite v0.3.2
|
|
github.com/hanzokv/go/v9 v9.22.0
|
|
golang.org/x/net v0.54.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/hanzoai/csqlite v0.1.0 // indirect
|
|
github.com/hanzoai/sqlcipher v0.1.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.21 // indirect
|
|
github.com/ncruces/go-strftime v1.0.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/stretchr/testify v1.11.1 // indirect
|
|
github.com/yuin/gopher-lua v1.1.1 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/crypto v0.52.0 // indirect
|
|
golang.org/x/sys v0.46.0 // indirect
|
|
golang.org/x/text v0.37.0 // indirect
|
|
)
|