forked from riverqueue/riverui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
34 lines (27 loc) · 1.11 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module github.com/riverqueue/riverui
go 1.22
require (
github.com/jackc/pgx/v5 v5.6.0
github.com/joho/godotenv v1.5.1
github.com/riverqueue/river v0.7.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.7.0
github.com/riverqueue/river/rivertype v0.7.0
github.com/rs/cors v1.10.0
github.com/samber/slog-http v1.0.0
)
require (
github.com/google/uuid v1.6.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/riverqueue/river/riverdriver v0.7.0 // indirect
go.opentelemetry.io/otel v1.19.0 // indirect
go.opentelemetry.io/otel/trace v1.19.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/text v0.16.0 // indirect
)
// replace github.com/riverqueue/river => ../river
// replace github.com/riverqueue/river/riverdriver => ../river/riverdriver
// replace github.com/riverqueue/river/rivertype => ../river/rivertype
// replace github.com/riverqueue/river/riverdriver/riverpgxv5 => ../river/riverdriver/riverpgxv5