Fanir
a7d08500f5
- database: - moved to jackc/pgx from database/sql - revised migrator and moved it into it's own package - separated ParseConfig into it's own function - config: - database config is now a DSN or URL instead of a struct - SearchPaths are now available through a function - improved help / usage output - modified data model
40 lines
1.6 KiB
Modula-2
40 lines
1.6 KiB
Modula-2
module git.zom.bi/fanir/feedizer
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/adrg/xdg v0.4.0
|
|
github.com/gofiber/fiber/v2 v2.25.0
|
|
github.com/gofiber/template v1.6.21
|
|
github.com/golang-migrate/migrate/v4 v4.15.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/jackc/pgx/v4 v4.15.0
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.2 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.11.0 // indirect
|
|
github.com/jackc/pgerrcode v0.0.0-20201024163028-a0d42d470451 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.10.0 // indirect
|
|
github.com/jackc/puddle v1.2.1 // indirect
|
|
github.com/klauspost/compress v1.13.6 // indirect
|
|
github.com/lib/pq v1.10.4 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.32.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
|
|
google.golang.org/grpc v1.43.0 // indirect
|
|
)
|