diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-12-26 05:44:42 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-12-26 05:44:42 +0530 |
commit | 59f1eb1219d744792f3bda9d7ab55338b028d2ac (patch) | |
tree | f8905a93ae05d1da78e61a5e2a191f878496b484 /go.mod | |
parent | fd03fd5968e5cd49120b9402acaa3e4ddfecda46 (diff) |
README.md & handler: excluding go-sqlite for modernc-sqlite
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -5,17 +5,32 @@ go 1.21.5 require ( github.com/joho/godotenv v1.5.1 github.com/labstack/echo/v4 v4.11.4 - github.com/mattn/go-sqlite3 v1.14.19 golang.org/x/crypto v0.17.0 + modernc.org/sqlite v1.28.0 ) require ( + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/google/uuid v1.3.0 // indirect + github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect github.com/labstack/gommon v0.4.2 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.2 // indirect + golang.org/x/mod v0.8.0 // indirect golang.org/x/net v0.19.0 // indirect golang.org/x/sys v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect + golang.org/x/tools v0.6.0 // indirect + lukechampine.com/uint128 v1.2.0 // indirect + modernc.org/cc/v3 v3.40.0 // indirect + modernc.org/ccgo/v3 v3.16.13 // indirect + modernc.org/libc v1.29.0 // indirect + modernc.org/mathutil v1.6.0 // indirect + modernc.org/memory v1.7.2 // indirect + modernc.org/opt v0.1.3 // indirect + modernc.org/strutil v1.1.3 // indirect + modernc.org/token v1.0.1 // indirect ) |