65 lines
2.6 KiB
Modula-2
Raw Normal View History

2023-09-06 20:49:18 +02:00
module github.com/github-tijlxyz/khatru-invite
go 1.21.0
2023-09-06 20:49:18 +02:00
require (
github.com/fiatjaf/eventstore v0.1.0
github.com/fiatjaf/khatru v0.1.0
2023-10-16 23:09:12 -03:00
github.com/kelseyhightower/envconfig v1.4.0
github.com/nbd-wtf/go-nostr v0.25.0
github.com/nbd-wtf/nostr-sdk v0.0.1
2023-10-16 23:09:12 -03:00
github.com/rs/zerolog v1.31.0
2023-10-18 11:58:09 -03:00
github.com/theplant/htmlgo v1.0.3
2023-09-06 20:49:18 +02:00
)
require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/btcsuite/btcd/btcutil v1.1.3 // indirect
2023-09-06 20:49:18 +02:00
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2023-09-06 20:49:18 +02:00
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/dgraph-io/badger/v4 v4.2.0 // indirect
2023-09-06 20:49:18 +02:00
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/fasthttp/websocket v1.5.3 // indirect
github.com/fiatjaf/generic-ristretto v0.0.1 // indirect
2023-09-06 20:49:18 +02:00
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.2.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.0.0 // indirect
2023-09-06 20:49:18 +02:00
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
2023-09-06 20:49:18 +02:00
github.com/google/flatbuffers v1.12.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.16.5 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
2023-10-16 23:09:12 -03:00
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
2023-09-06 20:49:18 +02:00
github.com/pkg/errors v0.9.1 // indirect
github.com/puzpuzpuz/xsync/v2 v2.5.1 // indirect
2023-09-06 20:49:18 +02:00
github.com/rs/cors v1.7.0 // indirect
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
github.com/tidwall/gjson v1.14.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.47.0 // indirect
go.opencensus.io v0.22.5 // indirect
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53 // indirect
golang.org/x/net v0.8.0 // indirect
2023-10-16 23:09:12 -03:00
golang.org/x/sys v0.12.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
2023-09-06 20:49:18 +02:00
)
2023-10-18 11:58:09 -03:00
replace github.com/fiatjaf/eventstore => /home/fiatjaf/comp/eventstore
2023-10-18 11:58:09 -03:00
replace github.com/fiatjaf/khatru => /home/fiatjaf/comp/khatru
replace github.com/nbd-wtf/go-nostr => /home/fiatjaf/comp/go-nostr
replace github.com/nbd-wtf/nostr-sdk => /home/fiatjaf/comp/nostr-sdk