Skip to content

Commit

Permalink
trying cgo-less driver
Browse files Browse the repository at this point in the history
  • Loading branch information
paganotoni committed Sep 22, 2024
1 parent e0a8cfb commit 51cb3c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM golang:1.22-alpine AS builder
RUN apk --update add build-base

WORKDIR /src/app
ADD go.mod .
Expand Down
8 changes: 3 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,18 @@ go 1.22.4
require (
github.com/gomarkdown/markdown v0.0.0-20231222211730-1d6d20845b47
github.com/jmoiron/sqlx v1.3.5
github.com/leapkit/leapkit/core v0.0.36
github.com/leapkit/leapkit/core v0.0.37-0.20240922160042-1e752981c16d
github.com/lithammer/shortuuid/v4 v4.0.0
modernc.org/sqlite v1.33.1
)

require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/gobuffalo/flect v1.0.2 // indirect
github.com/gobuffalo/plush/v5 v5.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/gorilla/sessions v1.3.0 // indirect

// sqlite dependencies
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ github.com/jmoiron/sqlx v1.3.5 h1:vFFPA71p1o5gAeqtEAwLU4dnX2napprKtHr7PYIcN3g=
github.com/jmoiron/sqlx v1.3.5/go.mod h1:nRVWtLre0KfCLJvgxzCsLVMogSvQ1zNJtpYr2Ccp0mQ=
github.com/leapkit/leapkit/core v0.0.36 h1:z+ImNOB/AIS8ous43/qeACzZhM8x1plquyiDyW43fqQ=
github.com/leapkit/leapkit/core v0.0.36/go.mod h1:9yNcjlnZ30jWT+B+9qUWPF/OXPyN8u13nHFDS9N11aM=
github.com/leapkit/leapkit/core v0.0.37-0.20240922160042-1e752981c16d h1:mH6FpEc3nWp03Uj0Ok37gcLSVPTlJ7AbXlCqSqib32M=
github.com/leapkit/leapkit/core v0.0.37-0.20240922160042-1e752981c16d/go.mod h1:ojA4xck/gLqIP5mTJpM8ss6sQQYiMPSUUWEcHlZyxHU=
github.com/lib/pq v1.2.0 h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0=
github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
github.com/lithammer/shortuuid/v4 v4.0.0 h1:QRbbVkfgNippHOS8PXDkti4NaWeyYfcBTHtw7k08o4c=
Expand Down

0 comments on commit 51cb3c4

Please sign in to comment.