fix some dependencies and storage instantiation on example relays.

This commit is contained in:
fiatjaf
2022-11-11 09:46:18 -03:00
parent b903f72945
commit d7aba0b21f
11 changed files with 50 additions and 57 deletions

7
go.mod
View File

@@ -5,7 +5,6 @@ go 1.18
require (
github.com/PuerkitoBio/goquery v1.8.0
github.com/cockroachdb/pebble v0.0.0-20220723153705-3fc374e4dc66
github.com/fiatjaf/go-nostr v0.7.4
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/grokify/html-strip-tags-go v0.0.1
@@ -14,6 +13,7 @@ require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/lib/pq v1.10.3
github.com/mmcdole/gofeed v1.1.3
github.com/nbd-wtf/go-nostr v0.8.0
github.com/rif/cache2go v1.0.0
github.com/rs/cors v1.7.0
github.com/rs/zerolog v1.20.0
@@ -24,6 +24,7 @@ require (
require (
github.com/DataDog/zstd v1.4.5 // indirect
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
github.com/SaveTheRbtz/generic-sync-map-go v0.0.0-20220414055132-a37292614db8 // indirect
github.com/aead/siphash v1.0.1 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/btcsuite/btcd v0.23.1 // indirect
@@ -74,9 +75,9 @@ require (
github.com/tidwall/pretty v1.2.0 // indirect
github.com/valyala/fastjson v1.6.3 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5 // indirect
golang.org/x/exp v0.0.0-20221106115401-f9659909a136 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/text v0.3.7 // indirect
)