diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-12 00:03:17 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-12 00:03:17 +0800 |
commit | 7813db6cf248d0c17222ff0d3030bb78950b070b (patch) | |
tree | 43594786475ffddadf5e6d8c93b787580522606a /go.mod | |
parent | _repo_header.html: Add /g/ (diff) | |
download | forge-7813db6cf248d0c17222ff0d3030bb78950b070b.tar.gz forge-7813db6cf248d0c17222ff0d3030bb78950b070b.tar.zst forge-7813db6cf248d0c17222ff0d3030bb78950b070b.zip |
config.go, etc.: Add PostgreSQL
Diffstat (limited to '')
-rw-r--r-- | go.mod | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,7 @@ go 1.23.5 require ( github.com/alecthomas/chroma/v2 v2.15.0 github.com/go-git/go-git/v5 v5.13.2 + github.com/jackc/pgx/v5 v5.7.2 github.com/microcosm-cc/bluemonday v1.0.27 github.com/yuin/goldmark v1.7.8 go.lindenii.runxiyu.org/lindenii-common v0.0.0-20250211153243-8946fae17bd0 @@ -23,6 +24,9 @@ require ( github.com/go-git/go-billy/v5 v5.6.2 // indirect github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/gorilla/css v1.0.1 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect + github.com/jackc/puddle/v2 v2.2.2 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect github.com/pjbgf/sha1cd v0.3.2 // indirect @@ -31,6 +35,8 @@ require ( github.com/xanzy/ssh-agent v0.3.3 // indirect golang.org/x/crypto v0.33.0 // indirect golang.org/x/net v0.35.0 // indirect + golang.org/x/sync v0.11.0 // indirect golang.org/x/sys v0.30.0 // indirect + golang.org/x/text v0.22.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect ) |