diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2026-05-12 23:32:28 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2026-05-12 23:32:28 +0200 |
| commit | a86a346ecceb7ad409f116474c1593b201012cf2 (patch) | |
| tree | 267505a9e6bba398f7a379a046df64a8aec45b1c /benchmark/go.mod | |
| parent | 23fa77bbe1286b55e2526c0a965da1a4c3048415 (diff) | |
| download | go-oblast-a86a346ecceb7ad409f116474c1593b201012cf2.tar.gz | |
add PostgreSQL benchmark, comparing lib/pq against pgx both with and w/o Oblast
Diffstat (limited to 'benchmark/go.mod')
| -rw-r--r-- | benchmark/go.mod | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/benchmark/go.mod b/benchmark/go.mod index 75f27db..5f981fa 100644 --- a/benchmark/go.mod +++ b/benchmark/go.mod @@ -4,14 +4,19 @@ go 1.26.0 require ( github.com/go-gorp/gorp/v3 v3.1.0 + github.com/jackc/pgx/v5 v5.9.2 + github.com/lib/pq v1.10.7 github.com/mattn/go-sqlite3 v1.14.42 - go.xyrillian.de/oblast v0.0.0-20260417200949-ba4f55e75e6b + go.xyrillian.de/oblast v0.7.0 gorm.io/driver/sqlite v1.6.0 gorm.io/gorm v1.31.1 ) require ( + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect - golang.org/x/text v0.20.0 // indirect + go.xyrillian.de/gg v1.7.0 // indirect + golang.org/x/text v0.37.0 // indirect ) |
