summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-04 13:13:23 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-05 17:02:06 +0530
commite2f67996a608346ea3f3525ef2febf6ca5d2b78c (patch)
tree932f766b65ed5a6ff3d57c772292a2b75210d9aa /go.mod
parente309091d17720b69c53172a41c0ea45ad7b66911 (diff)
refactor: drop http api, move to sqlc/postgresql
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod14
1 files changed, 5 insertions, 9 deletions
diff --git a/go.mod b/go.mod
index 9d0ee8c..84638f1 100644
--- a/go.mod
+++ b/go.mod
@@ -4,20 +4,16 @@ go 1.22.0
require (
github.com/cilium/ebpf v0.15.0
- github.com/go-playground/validator/v10 v10.19.0
- github.com/mattn/go-sqlite3 v1.14.22
- lukechampine.com/blake3 v1.2.1
+ github.com/jackc/pgx/v5 v5.6.0
+ golang.org/x/net v0.10.0
)
require (
- github.com/gabriel-vasile/mimetype v1.4.3 // indirect
- github.com/go-playground/locales v0.14.1 // indirect
- github.com/go-playground/universal-translator v0.18.1 // indirect
- github.com/klauspost/cpuid/v2 v2.2.4 // indirect
- github.com/leodido/go-urn v1.4.0 // indirect
+ github.com/jackc/pgpassfile v1.0.0 // indirect
+ github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
+ github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
- golang.org/x/net v0.21.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
)