-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from kaleido-io/fix-solidity-version-check
Check solidity version with exec command
- Loading branch information
Showing
4 changed files
with
92 additions
and
1,228 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,30 @@ | ||
module github.com/kaleido-io/kaleido-go | ||
|
||
go 1.15 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/Azure/azure-pipeline-go v0.2.2 // indirect | ||
github.com/Azure/azure-storage-blob-go v0.7.0 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.8.0 // indirect | ||
github.com/StackExchange/wmi v1.2.1 // indirect | ||
github.com/alexcesaro/statsd v2.0.0+incompatible | ||
github.com/aristanetworks/goarista v0.0.0-20210921175638-5051269002d8 // indirect | ||
github.com/avast/retry-go v3.0.0+incompatible | ||
github.com/btcsuite/btcd v0.22.1 // indirect | ||
github.com/ethereum/go-ethereum v1.10.25 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/cobra v1.6.1 | ||
) | ||
|
||
require ( | ||
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect | ||
github.com/dvyukov/go-fuzz v0.0.0-20200318091601-be3528f3a813 // indirect | ||
github.com/ethereum/go-ethereum v1.10.17 | ||
github.com/deckarep/golang-set v1.8.0 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/go-stack/stack v1.8.1 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/shirou/gopsutil v3.21.11+incompatible // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.8.1 // indirect | ||
github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570 // indirect | ||
github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3 // indirect | ||
github.com/tklauser/go-sysconf v0.3.10 // indirect | ||
github.com/tklauser/numcpus v0.5.0 // indirect | ||
github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.2 // indirect | ||
golang.org/x/crypto v0.0.0-20220516162934-403b01795ae8 // indirect | ||
golang.org/x/mobile v0.0.0-20200801112145-973feb4309de // indirect | ||
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a // indirect | ||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect | ||
gopkg.in/alexcesaro/statsd.v2 v2.0.0 // indirect | ||
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect | ||
) |
Oops, something went wrong.