This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
forked from barkyq/gnost-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
36 lines (31 loc) · 1.35 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
35
36
module gnost-relay
go 1.20
require (
github.com/fsnotify/fsnotify v1.6.0
github.com/gobwas/httphead v0.1.0
github.com/gobwas/ws v1.1.0
github.com/jackc/pgx/v5 v5.2.0
github.com/nbd-wtf/go-nostr v0.13.0
github.com/valyala/fastjson v1.6.4
golang.org/x/time v0.3.0
)
replace github.com/gobwas/ws => github.com/barkyq/ws v0.0.0-20230601190330-0928bdfc7eab
replace github.com/nbd-wtf/go-nostr => github.com/barkyq/go-nostr v0.0.0-20230212114450-7c1ab3e62717
require (
github.com/SaveTheRbtz/generic-sync-map-go v0.0.0-20220414055132-a37292614db8 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/puddle/v2 v2.1.2 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
golang.org/x/exp v0.0.0-20221106115401-f9659909a136 // indirect
golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.3.8 // indirect
)