mirror of https://github.com/VinGarcia/ksql.git
23 lines
608 B
Modula-2
23 lines
608 B
Modula-2
module github.com/vingarcia/ksql/benchmarks
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/friendsofgo/errors v0.9.2
|
|
github.com/jackc/pgx/v4 v4.18.1
|
|
github.com/jmoiron/sqlx v1.3.4
|
|
github.com/lib/pq v1.10.9
|
|
github.com/mattn/go-sqlite3 v1.14.12 // indirect
|
|
github.com/vingarcia/ksql v1.12.0
|
|
github.com/vingarcia/ksql/adapters/kpgx v0.0.0-00010101000000-000000000000
|
|
github.com/volatiletech/sqlboiler/v4 v4.12.0
|
|
github.com/volatiletech/strmangle v0.0.4
|
|
gorm.io/driver/postgres v1.2.2
|
|
gorm.io/gorm v1.22.3
|
|
)
|
|
|
|
replace (
|
|
github.com/vingarcia/ksql => ../
|
|
github.com/vingarcia/ksql/adapters/kpgx => ../adapters/kpgx/
|
|
)
|