diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2024-12-22 09:00:02 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2024-12-22 19:43:54 +0100 |
commit | fe48824093fd0caa287901b603fac05be4bc5e9c (patch) | |
tree | 30a4c58d58259957c57aac5564325ed929450f03 /go.mod | |
parent | bd130537736d74d8d77080d9876767981df759d9 (diff) | |
download | acid-fe48824093fd0caa287901b603fac05be4bc5e9c.tar.gz acid-fe48824093fd0caa287901b603fac05be4bc5e9c.tar.xz acid-fe48824093fd0caa287901b603fac05be4bc5e9c.zip |
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -3,9 +3,13 @@ module janouch.name/acid go 1.22.0 require ( - github.com/mattn/go-sqlite3 v1.14.22 - golang.org/x/crypto v0.21.0 + github.com/mattn/go-sqlite3 v1.14.24 + github.com/pkg/sftp v1.13.7 + golang.org/x/crypto v0.31.0 gopkg.in/yaml.v3 v3.0.1 ) -require golang.org/x/sys v0.18.0 // indirect +require ( + github.com/kr/fs v0.1.0 // indirect + golang.org/x/sys v0.28.0 // indirect +) |