* Update gocql version to v1.16.1 1. Update gocql to v1.16.1 2. Update golang to 1.25, since new gocql version requres it * Update golangci to 2.5.0 It is needed since 1.64.8 does not support golang 1.25. 1. Update golangci to 2.5.0 2. Migrate from golangci config v1 to v2 3. Integrate fieldaligment to golangci 4. Drop fieldaligment from Makefile 5. Address complaints
22 lines
459 B
Modula-2
22 lines
459 B
Modula-2
module schemagentest
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/gocql/gocql v1.7.0
|
|
github.com/google/go-cmp v0.7.0
|
|
github.com/scylladb/gocqlx/v3 v3.0.4
|
|
)
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/klauspost/compress v1.18.1 // indirect
|
|
github.com/scylladb/go-reflectx v1.0.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/gocql/gocql => github.com/scylladb/gocql v1.16.1
|
|
github.com/scylladb/gocqlx/v3 => ../../..
|
|
)
|