neoneo-go/go.mod

65 lines
2.7 KiB
Modula-2
Raw Normal View History

module github.com/nspcc-dev/neo-go
require (
github.com/btcsuite/btcd v0.22.0-beta
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/coreos/go-semver v0.3.0
github.com/davecgh/go-spew v1.1.1
2022-06-15 18:23:29 +00:00
github.com/google/uuid v1.2.0
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/golang-lru v0.5.4
github.com/holiman/uint256 v1.2.0
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/mr-tron/base58 v1.2.0
github.com/nspcc-dev/dbft v0.0.0-20220629112714-fd49ca59d354
github.com/nspcc-dev/go-ordered-json v0.0.0-20220111165707-25110be27d22
2022-08-08 13:30:42 +00:00
github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20220809123759-3094d3e0c14b
github.com/nspcc-dev/neofs-sdk-go v0.0.0-20220113123743-7f3162110659
github.com/nspcc-dev/rfc6979 v0.2.0
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/pmezard/go-difflib v1.0.0
2022-08-08 13:26:34 +00:00
github.com/prometheus/client_golang v1.13.0
github.com/stretchr/testify v1.7.0
github.com/syndtr/goleveldb v1.0.1-0.20210305035536-64b5b1c73954
github.com/twmb/murmur3 v1.1.5
github.com/urfave/cli v1.22.5
go.etcd.io/bbolt v1.3.6
go.uber.org/atomic v1.9.0
go.uber.org/zap v1.18.1
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
2022-08-08 13:26:34 +00:00
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
golang.org/x/text v0.3.7
golang.org/x/tools v0.1.8
gopkg.in/yaml.v3 v3.0.1
)
2019-10-17 08:30:52 +00:00
2022-08-08 13:26:34 +00:00
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2022-08-08 13:30:42 +00:00
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
2022-08-08 13:26:34 +00:00
github.com/golang/protobuf v1.5.2 // indirect
2022-08-08 13:30:42 +00:00
github.com/golang/snappy v0.0.1 // indirect
2022-08-08 13:26:34 +00:00
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
2022-08-08 13:30:42 +00:00
github.com/nspcc-dev/hrw v1.0.9 // indirect
github.com/nspcc-dev/neofs-api-go/v2 v2.11.1 // indirect
github.com/nspcc-dev/neofs-crypto v0.3.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
2022-08-08 13:26:34 +00:00
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
2022-08-08 13:30:42 +00:00
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
2022-08-08 13:26:34 +00:00
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
2022-08-08 13:30:42 +00:00
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20200825200019-8632dd797987 // indirect
google.golang.org/grpc v1.41.0 // indirect
2022-08-08 13:26:34 +00:00
google.golang.org/protobuf v1.28.1 // indirect
)
go 1.17