From 655b01e5b19b72dc133e7b24c658e0ec3f611bb0 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 29 Apr 2026 00:18:40 +0300 Subject: feat: SQLite schema migrations, repository interfaces, and concrete SQLite implementations with :memory: table-driven tests (task l9) --- go.mod | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 931c9a4..93d2a61 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,17 @@ module github.com/paul/kiss-media-player -go 1.24 +go 1.25.0 + +require modernc.org/sqlite v1.50.0 + +require ( + github.com/dustin/go-humanize v1.0.1 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/ncruces/go-strftime v1.0.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + golang.org/x/sys v0.42.0 // indirect + modernc.org/libc v1.72.0 // indirect + modernc.org/mathutil v1.7.1 // indirect + modernc.org/memory v1.11.0 // indirect +) -- cgit v1.2.3