- Replace modernc.org/sqlite with github.com/mattn/go-sqlite3 - Update connection string for go-sqlite3 syntax - Keep all performance optimizations and pragmas The CGO driver may provide better performance for write-heavy workloads compared to the pure Go implementation.
19 lines
420 B
Modula-2
19 lines
420 B
Modula-2
module git.eeqj.de/sneak/routewatch
|
|
|
|
go 1.24.4
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.2
|
|
github.com/google/uuid v1.6.0
|
|
github.com/mattn/go-sqlite3 v1.14.29
|
|
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9
|
|
go.uber.org/fx v1.24.0
|
|
)
|
|
|
|
require (
|
|
go.uber.org/dig v1.19.0 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
go.uber.org/zap v1.26.0 // indirect
|
|
golang.org/x/sys v0.34.0 // indirect
|
|
)
|