-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
29 lines (26 loc) · 949 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
29
module github.com/ardanlabs/usdl
go 1.23.4
require (
github.com/ardanlabs/conf/v3 v3.4.0
github.com/ethereum/go-ethereum v1.15.5
github.com/gdamore/tcell/v2 v2.8.1
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.3
github.com/nats-io/nats.go v1.39.1
github.com/rivo/tview v0.0.0-20241227133733-17b7edb88c57
)
require (
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/holiman/uint256 v1.3.2 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/nats-io/nkeys v0.4.9 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/crypto v0.32.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/term v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
)