2022-11-04 08:24:32 -03:00
|
|
|
module github.com/nbd-wtf/go-nostr
|
2021-01-31 11:05:09 -03:00
|
|
|
|
2023-07-30 17:03:25 -03:00
|
|
|
go 1.20
|
2021-01-31 11:05:09 -03:00
|
|
|
|
|
|
|
require (
|
2022-05-01 15:10:18 -03:00
|
|
|
github.com/btcsuite/btcd/btcec/v2 v2.2.0
|
2023-03-23 16:59:41 -03:00
|
|
|
github.com/btcsuite/btcd/btcutil v1.1.3
|
2023-08-06 19:54:17 -03:00
|
|
|
github.com/dgraph-io/ristretto v0.1.1
|
2023-05-04 23:51:15 +02:00
|
|
|
github.com/gobwas/httphead v0.1.0
|
|
|
|
github.com/gobwas/ws v1.2.0
|
2023-04-16 15:56:50 -03:00
|
|
|
github.com/mailru/easyjson v0.7.7
|
2023-05-30 13:52:14 -03:00
|
|
|
github.com/puzpuzpuz/xsync v1.5.2
|
2023-05-09 16:31:10 -03:00
|
|
|
github.com/tidwall/gjson v1.14.4
|
2022-01-06 21:56:57 -03:00
|
|
|
github.com/tyler-smith/go-bip32 v1.0.0
|
|
|
|
github.com/tyler-smith/go-bip39 v1.1.0
|
2022-11-08 07:15:08 -03:00
|
|
|
golang.org/x/exp v0.0.0-20221106115401-f9659909a136
|
2023-03-23 16:59:41 -03:00
|
|
|
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc
|
2021-01-31 11:05:09 -03:00
|
|
|
)
|
2022-08-22 08:45:27 -03:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e // indirect
|
|
|
|
github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec // indirect
|
|
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect
|
2023-08-06 19:54:17 -03:00
|
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
2022-08-22 08:45:27 -03:00
|
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
|
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
2023-08-06 19:54:17 -03:00
|
|
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
2023-05-04 23:51:15 +02:00
|
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
2023-08-06 19:54:17 -03:00
|
|
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
|
2023-04-16 15:56:50 -03:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
2023-08-06 19:54:17 -03:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-05-09 16:31:10 -03:00
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
2022-08-22 08:45:27 -03:00
|
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
|
2023-05-04 23:51:15 +02:00
|
|
|
golang.org/x/sys v0.6.0 // indirect
|
2022-08-22 08:45:27 -03:00
|
|
|
)
|