github.com/hyperledger/aries-framework-go@v0.3.2/go.mod (about) 1 // Copyright SecureKey Technologies Inc. All Rights Reserved. 2 // 3 // SPDX-License-Identifier: Apache-2.0 4 5 module github.com/hyperledger/aries-framework-go 6 7 // TODO (#2815): Remove circular dependency between the main module and component/storage/edv 8 9 require ( 10 github.com/PaesslerAG/gval v1.1.0 11 github.com/PaesslerAG/jsonpath v0.1.1 12 github.com/VictoriaMetrics/fastcache v1.5.7 13 github.com/bluele/gcache v0.0.0-20190518031135-bc40bd653833 14 github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce 15 github.com/cenkalti/backoff/v4 v4.0.2 16 github.com/go-jose/go-jose/v3 v3.0.1-0.20221117193127-916db76e8214 17 github.com/golang/mock v1.4.4 18 github.com/golang/protobuf v1.5.2 19 github.com/google/tink/go v1.7.0 20 github.com/google/uuid v1.3.0 21 github.com/gorilla/mux v1.7.3 22 github.com/hyperledger/aries-framework-go/component/kmscrypto v0.0.0-20230427134832-0c9969493bd3 23 github.com/hyperledger/aries-framework-go/component/log v0.0.0-20230427134832-0c9969493bd3 24 github.com/hyperledger/aries-framework-go/component/models v0.0.0-20230501135648-a9a7ad029347 25 github.com/hyperledger/aries-framework-go/component/storage/edv v0.0.0-20221025204933-b807371b6f1e 26 github.com/hyperledger/aries-framework-go/component/storageutil v0.0.0-20230427134832-0c9969493bd3 27 github.com/hyperledger/aries-framework-go/spi v0.0.0-20230427134832-0c9969493bd3 28 github.com/hyperledger/ursa-wrapper-go v0.3.1 29 github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a 30 github.com/kawamuray/jsonpath v0.0.0-20201211160320-7483bafabd7e 31 github.com/kilic/bls12-381 v0.1.1-0.20210503002446-7b7597926c69 32 github.com/mitchellh/mapstructure v1.5.0 33 github.com/multiformats/go-multibase v0.1.1 34 github.com/multiformats/go-multihash v0.0.13 35 github.com/piprate/json-gold v0.4.2 36 github.com/pkg/errors v0.9.1 37 github.com/rs/cors v1.7.0 38 github.com/stretchr/testify v1.8.1 39 github.com/teserakt-io/golang-ed25519 v0.0.0-20210104091850-3888c087a4c8 40 github.com/tidwall/gjson v1.6.7 41 github.com/tidwall/sjson v1.1.4 42 github.com/xeipuuv/gojsonschema v1.2.0 43 golang.org/x/crypto v0.1.0 44 nhooyr.io/websocket v1.8.3 45 ) 46 47 require ( 48 github.com/btcsuite/btcd v0.22.0-beta // indirect 49 github.com/cespare/xxhash/v2 v2.1.1 // indirect 50 github.com/davecgh/go-spew v1.1.1 // indirect 51 github.com/golang/snappy v0.0.4 // indirect 52 github.com/klauspost/compress v1.10.0 // indirect 53 github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect 54 github.com/minio/sha256-simd v0.1.1 // indirect 55 github.com/mr-tron/base58 v1.2.0 // indirect 56 github.com/multiformats/go-base32 v0.1.0 // indirect 57 github.com/multiformats/go-base36 v0.1.0 // indirect 58 github.com/multiformats/go-varint v0.0.5 // indirect 59 github.com/pmezard/go-difflib v1.0.0 // indirect 60 github.com/pquerna/cachecontrol v0.1.0 // indirect 61 github.com/spaolacci/murmur3 v1.1.0 // indirect 62 github.com/stretchr/objx v0.5.0 // indirect 63 github.com/tidwall/match v1.0.3 // indirect 64 github.com/tidwall/pretty v1.0.2 // indirect 65 github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect 66 github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect 67 golang.org/x/sys v0.1.0 // indirect 68 golang.org/x/time v0.1.0 // indirect 69 google.golang.org/protobuf v1.28.1 // indirect 70 gopkg.in/yaml.v3 v3.0.1 // indirect 71 ) 72 73 go 1.19 74 75 //replace github.com/square/go-jose/v3 => github.com/go-jose/go-jose/v3 v3.0.1-0.20221117193127-916db76e8214 76 // 77 //replace github.com/square/go-jose/v3/json => github.com/go-jose/go-jose/v3/json v1.0.1-0.20221117193127-916db76e8214 78 // 79 //replace github.com/square/go-jose/v3/jwt => github.com/go-jose/go-jose/v3/jwt v1.0.1-0.20221117193127-916db76e8214 80 // 81 //replace github.com/square/go-jose/v3/cipher => github.com/go-jose/go-jose/v3/cipher v1.0.1-0.20221117193127-916db76e8214