Skip to content

Commit cb573e1

Browse files
authored
Merge pull request #22 from KyberNetwork/ft/short-stack
ft: add ShortStack for feching a short stack trace
2 parents b03fc55 + 316030a commit cb573e1

File tree

4 files changed

+140
-141
lines changed

4 files changed

+140
-141
lines changed

go.mod

Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,50 @@
11
module github.com/KyberNetwork/kutils
22

3-
go 1.23.1
3+
go 1.23.9
44

55
require (
6-
github.com/KyberNetwork/kyberswap-dex-lib v0.80.3
7-
github.com/KyberNetwork/logger v0.2.1
6+
github.com/KyberNetwork/kyberswap-dex-lib v0.114.12
7+
github.com/KyberNetwork/logger v1.0.3
88
github.com/aws/smithy-go v1.15.0
9-
github.com/bytedance/sonic v1.12.1
9+
github.com/bytedance/sonic v1.14.0
1010
github.com/dgraph-io/ristretto v0.2.0
11-
github.com/ethereum/go-ethereum v1.14.3
12-
github.com/go-resty/resty/v2 v2.14.0
13-
github.com/goccy/go-json v0.10.3
14-
github.com/hashicorp/go-retryablehttp v0.7.7
11+
github.com/ethereum/go-ethereum v1.15.2
12+
github.com/go-resty/resty/v2 v2.16.5
13+
github.com/goccy/go-json v0.10.5
14+
github.com/hashicorp/go-retryablehttp v0.7.8
1515
github.com/json-iterator/go v1.1.12
1616
github.com/mitchellh/mapstructure v1.5.0
1717
github.com/pkg/errors v0.9.1
1818
github.com/redis/go-redis/v9 v9.7.0
1919
github.com/shopspring/decimal v1.4.0
20-
github.com/stretchr/testify v1.9.0
21-
go.uber.org/mock v0.4.0
22-
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
23-
golang.org/x/net v0.29.0
20+
github.com/stretchr/testify v1.10.0
21+
go.uber.org/mock v0.5.2
22+
golang.org/x/exp v0.0.0-20250811191247-51f88131bc50
23+
golang.org/x/net v0.43.0
2424
)
2525

2626
require (
27-
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
28-
github.com/bytedance/sonic/loader v0.2.0 // indirect
27+
github.com/bytedance/sonic/loader v0.3.0 // indirect
2928
github.com/cespare/xxhash/v2 v2.3.0 // indirect
30-
github.com/cloudwego/base64x v0.1.4 // indirect
31-
github.com/cloudwego/iasm v0.2.0 // indirect
32-
github.com/davecgh/go-spew v1.1.1 // indirect
29+
github.com/cloudwego/base64x v0.1.5 // indirect
30+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3331
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
3432
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
3533
github.com/dustin/go-humanize v1.0.1 // indirect
3634
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
37-
github.com/holiman/uint256 v1.3.1 // indirect
35+
github.com/holiman/uint256 v1.3.2 // indirect
3836
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
3937
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4038
github.com/modern-go/reflect2 v1.0.2 // indirect
41-
github.com/pmezard/go-difflib v1.0.0 // indirect
39+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
4240
github.com/sirupsen/logrus v1.9.3 // indirect
4341
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
4442
go.uber.org/multierr v1.11.0 // indirect
4543
go.uber.org/zap v1.27.0 // indirect
46-
golang.org/x/arch v0.9.0 // indirect
47-
golang.org/x/crypto v0.27.0 // indirect
48-
golang.org/x/sys v0.25.0 // indirect
49-
golang.org/x/text v0.18.0 // indirect
50-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
44+
golang.org/x/arch v0.14.0 // indirect
45+
golang.org/x/crypto v0.41.0 // indirect
46+
golang.org/x/sys v0.35.0 // indirect
47+
golang.org/x/text v0.28.0 // indirect
5148
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
5249
gopkg.in/yaml.v3 v3.0.1 // indirect
5350
)

0 commit comments

Comments
 (0)