Skip to content

Commit f4bbe61

Browse files
committed
update deps
1 parent a97abbd commit f4bbe61

File tree

4 files changed

+85
-90
lines changed

4 files changed

+85
-90
lines changed

doc_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func ExampleOverflowState_Tx() {
3333
//🧑 Created account: emulator-first with address: 179b6b1cb6755e31 with flow: 10.00
3434
//🧑 Created account: emulator-second with address: f3fcd2c1a78f5eee with flow: 10.00
3535
//📜 deploy contracts Debug
36-
//👌 Tx:arguments fee:0.00001000 gas:4
36+
//👌 Tx:arguments fee:0.00001000 gas:5
3737
//
3838
}
3939

@@ -55,7 +55,7 @@ func ExampleOverflowState_Tx_inline() {
5555
//🧑 Created account: emulator-first with address: 179b6b1cb6755e31 with flow: 10.00
5656
//🧑 Created account: emulator-second with address: f3fcd2c1a78f5eee with flow: 10.00
5757
//📜 deploy contracts Debug
58-
//👌 Tx: fee:0.00001000 gas:7
58+
//👌 Tx: fee:0.00001000 gas:8
5959
//=== Events ===
6060
//A.f8d6e0586b0a20c7.Debug.Log
6161
// msg -> overflow ftw!
@@ -81,7 +81,7 @@ func ExampleOverflowState_Tx_multisign() {
8181
//🧑 Created account: emulator-first with address: 179b6b1cb6755e31 with flow: 10.00
8282
//🧑 Created account: emulator-second with address: f3fcd2c1a78f5eee with flow: 10.00
8383
//📜 deploy contracts Debug
84-
//👌 Tx: fee:0.00001000 gas:7
84+
//👌 Tx: fee:0.00001000 gas:8
8585
//=== Events ===
8686
//A.f8d6e0586b0a20c7.Debug.Log
8787
// msg -> acct:0xf3fcd2c1a78f5eee

go.mod

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,37 @@
11
module github.com/bjartek/overflow/v2
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.3
5+
toolchain go1.23.6
66

77
require (
88
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
9-
github.com/bjartek/underflow v1.10.0
9+
github.com/bjartek/underflow v1.11.0
1010
github.com/enescakir/emoji v1.0.0
1111
github.com/fatih/color v1.17.0
1212
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0
1313
github.com/hashicorp/go-multierror v1.1.1
1414
github.com/hexops/autogold v1.3.1
15-
github.com/onflow/cadence v1.2.1
15+
github.com/onflow/cadence v1.3.1
1616
github.com/onflow/flixkit-go/v2 v2.1.0
17-
github.com/onflow/flow-emulator v1.1.0
18-
github.com/onflow/flow-go v0.38.0-preview.0.0.20241022154145-6a254edbec23
19-
github.com/onflow/flow-go-sdk v1.2.2
20-
github.com/onflow/flowkit/v2 v2.1.0
17+
github.com/onflow/flow-emulator v1.2.0
18+
github.com/onflow/flow-go v0.38.0-util.0.20250130182921-c8d283b60d12
19+
github.com/onflow/flow-go-sdk v1.3.1
20+
github.com/onflow/flowkit/v2 v2.2.0
2121
github.com/pkg/errors v0.9.1
2222
github.com/rs/zerolog v1.33.0
2323
github.com/sanity-io/litter v1.5.5
2424
github.com/spf13/afero v1.11.0
25-
github.com/stretchr/testify v1.9.0
25+
github.com/stretchr/testify v1.10.0
2626
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb
2727
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a
2828
google.golang.org/grpc v1.67.1
2929
)
3030

3131
require (
32-
cloud.google.com/go v0.112.0 // indirect
3332
cloud.google.com/go/compute/metadata v0.5.0 // indirect
3433
cloud.google.com/go/iam v1.1.6 // indirect
3534
cloud.google.com/go/kms v1.15.7 // indirect
36-
cloud.google.com/go/storage v1.36.0 // indirect
3735
github.com/DataDog/zstd v1.5.2 // indirect
3836
github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e // indirect
3937
github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec // indirect
@@ -98,7 +96,7 @@ require (
9896
github.com/google/s2a-go v0.1.7 // indirect
9997
github.com/google/uuid v1.6.0 // indirect
10098
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
101-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
99+
github.com/googleapis/gax-go/v2 v2.12.2 // indirect
102100
github.com/gorilla/websocket v1.5.0 // indirect
103101
github.com/gosuri/uilive v0.0.4 // indirect
104102
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.0 // indirect
@@ -130,7 +128,7 @@ require (
130128
github.com/jbenet/goprocess v0.1.4 // indirect
131129
github.com/k0kubun/pp v3.0.1+incompatible // indirect
132130
github.com/kevinburke/go-bindata v3.24.0+incompatible // indirect
133-
github.com/klauspost/compress v1.17.4 // indirect
131+
github.com/klauspost/compress v1.17.9 // indirect
134132
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
135133
github.com/kr/pretty v0.3.1 // indirect
136134
github.com/kr/text v0.2.0 // indirect
@@ -145,7 +143,6 @@ require (
145143
github.com/mattn/go-colorable v0.1.13 // indirect
146144
github.com/mattn/go-isatty v0.0.20 // indirect
147145
github.com/mattn/go-runewidth v0.0.15 // indirect
148-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
149146
github.com/minio/sha256-simd v1.0.1 // indirect
150147
github.com/mitchellh/mapstructure v1.5.0 // indirect
151148
github.com/mmcloughlin/addchain v0.4.0 // indirect
@@ -158,9 +155,11 @@ require (
158155
github.com/multiformats/go-multihash v0.2.3 // indirect
159156
github.com/multiformats/go-multistream v0.5.0 // indirect
160157
github.com/multiformats/go-varint v0.0.7 // indirect
158+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
161159
github.com/nightlyone/lockfile v1.0.0 // indirect
162160
github.com/olekukonko/tablewriter v0.0.5 // indirect
163-
github.com/onflow/atree v0.8.0 // indirect
161+
github.com/onflow/atree v0.9.0 // indirect
162+
github.com/onflow/bridged-usdc/lib/go/contracts v1.0.0 // indirect
164163
github.com/onflow/crypto v0.25.2 // indirect
165164
github.com/onflow/flow-core-contracts/lib/go/contracts v1.4.0 // indirect
166165
github.com/onflow/flow-core-contracts/lib/go/templates v1.4.0 // indirect
@@ -177,10 +176,10 @@ require (
177176
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
178177
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
179178
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
180-
github.com/prometheus/client_golang v1.18.0 // indirect
181-
github.com/prometheus/client_model v0.5.0 // indirect
182-
github.com/prometheus/common v0.45.0 // indirect
183-
github.com/prometheus/procfs v0.12.0 // indirect
179+
github.com/prometheus/client_golang v1.20.5 // indirect
180+
github.com/prometheus/client_model v0.6.1 // indirect
181+
github.com/prometheus/common v0.55.0 // indirect
182+
github.com/prometheus/procfs v0.15.1 // indirect
184183
github.com/psiemens/graceland v1.0.0 // indirect
185184
github.com/psiemens/sconfig v0.1.0 // indirect
186185
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
@@ -210,10 +209,10 @@ require (
210209
github.com/vmihailenco/msgpack/v4 v4.3.11 // indirect
211210
github.com/vmihailenco/tagparser v0.1.1 // indirect
212211
github.com/x448/float16 v0.8.4 // indirect
213-
github.com/zeebo/blake3 v0.2.3 // indirect
212+
github.com/zeebo/blake3 v0.2.4 // indirect
214213
go.opencensus.io v0.24.0 // indirect
215-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
216-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
214+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
215+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
217216
go.opentelemetry.io/otel v1.24.0 // indirect
218217
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 // indirect
219218
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 // indirect
@@ -224,18 +223,18 @@ require (
224223
go.uber.org/atomic v1.11.0 // indirect
225224
go.uber.org/multierr v1.11.0 // indirect
226225
go.uber.org/zap v1.26.0 // indirect
227-
golang.org/x/crypto v0.26.0 // indirect
226+
golang.org/x/crypto v0.28.0 // indirect
228227
golang.org/x/mod v0.17.0 // indirect
229228
golang.org/x/net v0.28.0 // indirect
230229
golang.org/x/oauth2 v0.22.0 // indirect
231230
golang.org/x/sync v0.8.0 // indirect
232-
golang.org/x/sys v0.24.0 // indirect
233-
golang.org/x/text v0.17.0 // indirect
231+
golang.org/x/sys v0.26.0 // indirect
232+
golang.org/x/text v0.19.0 // indirect
234233
golang.org/x/time v0.5.0 // indirect
235234
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
236235
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
237236
gonum.org/v1/gonum v0.14.0 // indirect
238-
google.golang.org/api v0.162.0 // indirect
237+
google.golang.org/api v0.169.0 // indirect
239238
google.golang.org/appengine v1.6.8 // indirect
240239
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
241240
google.golang.org/genproto/googleapis/api v0.0.0-20240814211410-ddb44dafa142 // indirect

0 commit comments

Comments
 (0)