forked from trustbloc/sidetree-core-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
25 lines (22 loc) · 883 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright SecureKey Technologies Inc. All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
module github.com/trustbloc/sidetree-core-go
require (
github.com/btcsuite/btcd v0.20.1-beta
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d
github.com/evanphx/json-patch v4.1.0+incompatible
github.com/gorilla/mux v1.7.3
github.com/kr/pretty v0.1.0 // indirect
github.com/minio/sha256-simd v0.1.1 // indirect
github.com/multiformats/go-multihash v0.0.13
github.com/pkg/errors v0.8.1
github.com/sirupsen/logrus v1.3.0
github.com/square/go-jose/v3 v3.0.0-20191119004800-96c717272387
github.com/stretchr/testify v1.4.0
golang.org/x/crypto v0.0.0-20200210222208-86ce3cb69678
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
go 1.13