mirror of
https://github.com/asmogo/nws.git
synced 2024-12-12 18:36:22 +00:00
a77add0859
* replaced nip04 with nip44 * Refactor key decoding logic to use common function * Refactor key decoding logic to use common function * fix nostr connection read test
45 lines
1.6 KiB
Modula-2
45 lines
1.6 KiB
Modula-2
module github.com/asmogo/nws
|
|
|
|
go 1.21.0
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/btcec/v2 v2.3.2
|
|
github.com/caarlos0/env/v11 v11.0.0
|
|
github.com/ekzyis/nip44 v0.0.0-20240425094820-6a3d864c8f08
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/nbd-wtf/go-nostr v0.30.2
|
|
github.com/puzpuzpuz/xsync/v3 v3.0.2
|
|
github.com/samber/lo v1.45.0
|
|
github.com/spf13/cobra v1.8.1
|
|
github.com/stretchr/testify v1.9.0
|
|
golang.org/x/net v0.27.0
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/btcutil v1.1.3 // indirect
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
|
|
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/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // 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
|
|
golang.org/x/crypto v0.25.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53 // indirect
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|