aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in
Commit message (Collapse)AuthorAgeFilesLines
* core, eth, trie: use common/prque (#17508)Wenbiao Zheng2018-09-034-291/+0
|
* all: switch out defunct set library to different one (#16873)Ralph Caraveo III2018-07-165-781/+0
| | | | | | * keystore, ethash, eth, miner, rpc, whisperv6: tech debt with now defunct set. * whisperv5: swap out gopkg.in/fatih/set.v0 with supported set
* vendor: bump duktape to get rid of build warningPéter Szilágyi2018-03-072-2/+3
|
* cmd, core, eth/tracers: support fancier js tracing (#15516)Péter Szilágyi2017-12-2130-0/+105454
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * cmd, core, eth/tracers: support fancier js tracing * eth, internal/web3ext: rework trace API, concurrency, chain tracing * eth/tracers: add three more JavaScript tracers * eth/tracers, vendor: swap ottovm to duktape for tracing * core, eth, internal: finalize call tracer and needed extras * eth, tests: prestate tracer, call test suite, rewinding * vendor: fix windows builds for tracer js engine * vendor: temporary duktape fix * eth/tracers: fix up 4byte and evmdis tracer * vendor: pull in latest duktape with my upstream fixes * eth: fix some review comments * eth: rename rewind to reexec to make it more obvious * core/vm: terminate tracing using defers
* cmd/geth, cmd/swarm: sort commands and flags by name (#3462)Maximilian Meister2017-08-1110-53/+190
|
* vendor: update dependencies with github.com/kardianos/govendorFelix Lange2017-02-1611-289/+181
|
* vendor: update all dependencies except Azure SDKFelix Lange2017-01-1118-810/+1602
| | | | | The Azure SDK doesn't support Go 1.5 anymore. We can't upgrade it until Go 1.8 comes out.
* Godeps, vendor: convert dependency management to trash (#3198)Péter Szilágyi2016-10-2950-0/+9455
This commit converts the dependency management from Godeps to the vendor folder, also switching the tool from godep to trash. Since the upstream tool lacks a few features proposed via a few PRs, until those PRs are merged in (if), use github.com/karalabe/trash. You can update dependencies via trash --update. All dependencies have been updated to their latest version. Parts of the build system are reworked to drop old notions of Godeps and invocation of the go vet command so that it doesn't run against the vendor folder, as that will just blow up during vetting. The conversion drops OpenCL (and hence GPU mining support) from ethash and our codebase. The short reasoning is that there's noone to maintain and having opencl libs in our deps messes up builds as go install ./... tries to build them, failing with unsatisfied link errors for the C OpenCL deps. golang.org/x/net/context is not vendored in. We expect it to be fetched by the user (i.e. using go get). To keep ci.go builds reproducible the package is "vendored" in build/_vendor.