Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 6a7ddd0

Browse files
tac0turtleMarko Baricevic
andauthored
build(deps): remove go header dependency (#63)
* remove go header * remove extra make file commands --------- Co-authored-by: Marko Baricevic <[email protected]>
1 parent bdae150 commit 6a7ddd0

File tree

5 files changed

+22
-327
lines changed

5 files changed

+22
-327
lines changed

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@ proto-lint: check-proto-deps
8989
.PHONY: proto-lint
9090

9191
## mock-gen: Re-generates DA mock
92-
mock-gen: mocks/mock_Executor.go
92+
mock-gen:
93+
@mockery
9394
.PHONY: mock-gen
94-
95-
mocks/mock_Executor.go: execution.go .mockery.yaml
96-
@mockery

go.mod

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,58 +2,24 @@ module github.com/rollkit/go-execution
22

33
go 1.22.7
44

5-
toolchain go1.23.2
6-
75
require (
8-
github.com/celestiaorg/go-header v0.6.4
96
github.com/cosmos/gogoproto v1.7.0
107
github.com/stretchr/testify v1.10.0
118
google.golang.org/grpc v1.70.0
129
)
1310

1411
require (
1512
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
16-
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
17-
github.com/gogo/protobuf v1.3.2 // indirect
1813
github.com/google/go-cmp v0.6.0 // indirect
19-
github.com/gorilla/websocket v1.5.3 // indirect
20-
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
21-
github.com/ipfs/go-cid v0.4.1 // indirect
22-
github.com/ipfs/go-log/v2 v2.5.1 // indirect
23-
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
2414
github.com/kr/pretty v0.3.1 // indirect
25-
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
26-
github.com/libp2p/go-libp2p v0.35.0 // indirect
27-
github.com/libp2p/go-libp2p-pubsub v0.11.0 // indirect
28-
github.com/libp2p/go-msgio v0.3.0 // indirect
29-
github.com/mattn/go-isatty v0.0.20 // indirect
30-
github.com/minio/sha256-simd v1.0.1 // indirect
31-
github.com/mr-tron/base58 v1.2.0 // indirect
32-
github.com/multiformats/go-base32 v0.1.0 // indirect
33-
github.com/multiformats/go-base36 v0.2.0 // indirect
34-
github.com/multiformats/go-multiaddr v0.13.0 // indirect
35-
github.com/multiformats/go-multiaddr-fmt v0.1.0 // indirect
36-
github.com/multiformats/go-multibase v0.2.0 // indirect
37-
github.com/multiformats/go-multicodec v0.9.0 // indirect
38-
github.com/multiformats/go-multihash v0.2.3 // indirect
39-
github.com/multiformats/go-multistream v0.5.0 // indirect
40-
github.com/multiformats/go-varint v0.0.7 // indirect
4115
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
4216
github.com/rogpeppe/go-internal v1.11.0 // indirect
43-
github.com/spaolacci/murmur3 v1.1.0 // indirect
4417
github.com/stretchr/objx v0.5.2 // indirect
45-
go.uber.org/multierr v1.11.0 // indirect
46-
go.uber.org/zap v1.27.0 // indirect
47-
golang.org/x/crypto v0.31.0 // indirect
48-
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
4918
golang.org/x/net v0.33.0 // indirect
5019
golang.org/x/sys v0.28.0 // indirect
5120
golang.org/x/text v0.21.0 // indirect
5221
google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect
5322
google.golang.org/protobuf v1.35.2 // indirect
5423
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
5524
gopkg.in/yaml.v3 v3.0.1 // indirect
56-
lukechampine.com/blake3 v1.2.1 // indirect
5725
)
58-
59-
// Add other dependencies as needed

0 commit comments

Comments
 (0)