2022-04-25 17:29:38 +02:00
|
|
|
module cic_dw
|
|
|
|
|
|
|
|
go 1.18
|
|
|
|
|
2022-04-29 10:09:10 +02:00
|
|
|
// https://github.com/btcsuite/btcd/issues/1839
|
|
|
|
replace github.com/btcsuite/btcd => github.com/btcsuite/btcd v0.22.0-beta
|
|
|
|
|
|
|
|
replace github.com/ethereum/go-ethereum => github.com/ethereum/go-ethereum v1.10.16
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/ethereum/go-ethereum v1.10.17
|
|
|
|
github.com/lmittmann/w3 v0.7.0
|
|
|
|
github.com/rs/zerolog v1.26.1
|
|
|
|
)
|
|
|
|
|
2022-04-25 17:29:38 +02:00
|
|
|
require (
|
2022-04-29 10:09:10 +02:00
|
|
|
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
|
|
|
|
github.com/btcsuite/btcd v0.20.1-beta // indirect
|
|
|
|
github.com/deckarep/golang-set v1.8.0 // indirect
|
|
|
|
github.com/go-ole/go-ole v1.2.1 // indirect
|
|
|
|
github.com/go-stack/stack v1.8.0 // indirect
|
|
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
|
|
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
|
|
|
|
github.com/tklauser/go-sysconf v0.3.5 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.2.2 // indirect
|
|
|
|
golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912 // indirect
|
|
|
|
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
|
2022-04-25 17:29:38 +02:00
|
|
|
)
|