-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
28 lines (25 loc) · 958 Bytes
/
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
module github.com/erkkah/letarette
require (
github.com/erkkah/immutable v0.1.0
github.com/erkkah/margaid v0.0.2
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/jmoiron/sqlx v1.3.5
github.com/kelseyhightower/envconfig v1.4.0
github.com/mattn/go-sqlite3 v1.14.13
github.com/nats-io/nats.go v1.15.0
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
)
require (
github.com/erkkah/bygg v0.6.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/klauspost/compress v1.15.1 // indirect
github.com/nats-io/nats-server/v2 v2.7.4 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
go.uber.org/atomic v1.9.0 // indirect
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171 // indirect
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
)
go 1.18