-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented signiture verification methods to Np2pEvent and Np2pEvent…
…ForRest.
- Loading branch information
Showing
7 changed files
with
258 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,37 @@ | ||
module github.com/ryogrid/nostrp2p | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
toolchain go1.21.2 | ||
|
||
require ( | ||
github.com/ant0ine/go-json-rest v3.3.2+incompatible | ||
github.com/chenjiandongx/mandodb v0.0.0-20230824062318-5bc13c508bc1 | ||
github.com/holiman/uint256 v1.2.4 | ||
github.com/pavelkrolevets/uint512 v0.0.0-20221129063351-01a9c0c431b5 | ||
github.com/nbd-wtf/go-nostr v0.30.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 | ||
github.com/weaveworks/mesh v0.0.0-20191105120815-58dbcc3e8e63 | ||
) | ||
|
||
require ( | ||
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2 // 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/mailru/easyjson v0.7.7 // indirect | ||
github.com/puzpuzpuz/xsync/v3 v3.0.2 // 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 | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect | ||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
) |
Oops, something went wrong.