Skip to content

Commit 6b5ab4c

Browse files
authored
Merge pull request #734 from dessaya/koanfv2
fix koanf dependency
2 parents a201d5e + eca10a9 commit 6b5ab4c

File tree

12 files changed

+359
-1290
lines changed

12 files changed

+359
-1290
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ wal/
4141
tests_output.log
4242
*__debug_bin
4343
*.blk
44-
go.work
45-
go.work.sum
4644
TMP*
4745
tmp.*
4846
sdk/

go.mod

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,22 @@ require (
2828
github.com/holiman/uint256 v1.3.2
2929
github.com/iotaledger/bcs-go v0.0.0-20250716100925-71f848cac593
3030
github.com/iotaledger/grocksdb v1.7.5-0.20230220105546-5162e18885c7
31-
github.com/iotaledger/hive.go/app v0.0.0-20250409140545-e1a365dbea74
32-
github.com/iotaledger/hive.go/constraints v0.0.0-20250409140545-e1a365dbea74
33-
github.com/iotaledger/hive.go/crypto v0.0.0-20250409140545-e1a365dbea74
34-
github.com/iotaledger/hive.go/db v0.0.0-20250409140545-e1a365dbea74
35-
github.com/iotaledger/hive.go/ds v0.0.0-20250409140545-e1a365dbea74
36-
github.com/iotaledger/hive.go/ierrors v0.0.0-20250409140545-e1a365dbea74
37-
github.com/iotaledger/hive.go/lo v0.0.0-20250409140545-e1a365dbea74
38-
github.com/iotaledger/hive.go/log v0.0.0-20250409140545-e1a365dbea74
31+
github.com/iotaledger/hive.go/app v0.0.0-20251001162450-d572d7955f11
32+
github.com/iotaledger/hive.go/constraints v0.0.0-20251001162450-d572d7955f11
33+
github.com/iotaledger/hive.go/crypto v0.0.0-20251001162450-d572d7955f11
34+
github.com/iotaledger/hive.go/db v0.0.0-20251001162450-d572d7955f11
35+
github.com/iotaledger/hive.go/ds v0.0.0-20251001162450-d572d7955f11
36+
github.com/iotaledger/hive.go/ierrors v0.0.0-20251001162450-d572d7955f11
37+
github.com/iotaledger/hive.go/lo v0.0.0-20251001162450-d572d7955f11
38+
github.com/iotaledger/hive.go/log v0.0.0-20251001162450-d572d7955f11
3939
github.com/iotaledger/hive.go/objectstorage v0.0.0-20231018191940-f36386f4e2fa
40-
github.com/iotaledger/hive.go/runtime v0.0.0-20250409140545-e1a365dbea74
40+
github.com/iotaledger/hive.go/runtime v0.0.0-20251001162450-d572d7955f11
4141
github.com/iotaledger/hive.go/serializer/v2 v2.0.0-rc.1.0.20250409140545-e1a365dbea74
42-
github.com/iotaledger/hive.go/web v0.0.0-20250409140545-e1a365dbea74
43-
github.com/knadh/koanf v1.5.0
44-
github.com/knadh/koanf/v2 v2.2.0
42+
github.com/iotaledger/hive.go/web v0.0.0-20251001162450-d572d7955f11
43+
github.com/knadh/koanf/parsers/json v1.0.0
44+
github.com/knadh/koanf/providers/env v1.1.0
45+
github.com/knadh/koanf/providers/file v1.2.0
46+
github.com/knadh/koanf/v2 v2.3.0
4547
github.com/labstack/echo-contrib v0.17.2
4648
github.com/labstack/echo-jwt/v4 v4.3.0
4749
github.com/labstack/echo/v4 v4.13.3
@@ -66,10 +68,10 @@ require (
6668
go.uber.org/atomic v1.11.0
6769
go.uber.org/dig v1.19.0
6870
go.uber.org/zap v1.27.0
69-
golang.org/x/crypto v0.39.0
71+
golang.org/x/crypto v0.40.0
7072
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b
71-
golang.org/x/net v0.41.0
72-
golang.org/x/text v0.26.0
73+
golang.org/x/net v0.42.0
74+
golang.org/x/text v0.27.0
7375
golang.org/x/time v0.12.0
7476
pgregory.net/rapid v1.2.0
7577
)
@@ -89,6 +91,7 @@ require (
8991
github.com/containerd/log v0.1.0 // indirect
9092
github.com/containerd/platforms v0.2.1 // indirect
9193
github.com/cpuguy83/dockercfg v0.3.2 // indirect
94+
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
9295
github.com/crate-crypto/go-eth-kzg v1.3.0 // indirect
9396
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
9497
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -108,12 +111,12 @@ require (
108111
github.com/ferranbt/fastssz v0.1.4 // indirect
109112
github.com/flynn/noise v1.1.0 // indirect
110113
github.com/francoispqt/gojay v1.2.13 // indirect
111-
github.com/fsnotify/fsnotify v1.8.0 // indirect
114+
github.com/fsnotify/fsnotify v1.9.0 // indirect
112115
github.com/go-logr/logr v1.4.2 // indirect
113116
github.com/go-logr/stdr v1.2.2 // indirect
114117
github.com/go-ole/go-ole v1.3.0 // indirect
115118
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
116-
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
119+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
117120
github.com/gofrs/flock v0.12.1 // indirect
118121
github.com/gogo/protobuf v1.3.2 // indirect
119122
github.com/golang/snappy v1.0.0 // indirect
@@ -125,13 +128,17 @@ require (
125128
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
126129
github.com/huin/goupnp v1.3.0 // indirect
127130
github.com/iancoleman/orderedmap v0.3.0 // indirect
128-
github.com/iotaledger/hive.go/stringify v0.0.0-20250409140545-e1a365dbea74 // indirect
131+
github.com/iotaledger/hive.go/stringify v0.0.0-20251001162450-d572d7955f11 // indirect
129132
github.com/ipfs/go-cid v0.5.0 // indirect
130133
github.com/ipfs/go-log/v2 v2.6.0 // indirect
131134
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
132135
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
133136
github.com/klauspost/compress v1.18.0 // indirect
134137
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
138+
github.com/knadh/koanf/maps v0.1.2 // indirect
139+
github.com/knadh/koanf/providers/confmap v1.0.0 // indirect
140+
github.com/knadh/koanf/providers/posflag v1.0.1 // indirect
141+
github.com/knadh/koanf/providers/structs v1.0.0 // indirect
135142
github.com/koron/go-ssdp v0.0.6 // indirect
136143
github.com/kr/text v0.2.0 // indirect
137144
github.com/labstack/gommon v0.4.2 // indirect
@@ -147,7 +154,7 @@ require (
147154
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
148155
github.com/mattn/go-colorable v0.1.14 // indirect
149156
github.com/mattn/go-isatty v0.0.20 // indirect
150-
github.com/mattn/go-runewidth v0.0.15 // indirect
157+
github.com/mattn/go-runewidth v0.0.16 // indirect
151158
github.com/miekg/dns v1.1.66 // indirect
152159
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
153160
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
@@ -173,12 +180,12 @@ require (
173180
github.com/multiformats/go-multistream v0.6.1 // indirect
174181
github.com/multiformats/go-varint v0.0.7 // indirect
175182
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
183+
github.com/nxadm/tail v1.4.11 // indirect
176184
github.com/olekukonko/tablewriter v0.0.5 // indirect
177185
github.com/onsi/ginkgo/v2 v2.23.4 // indirect
178186
github.com/opencontainers/go-digest v1.0.0 // indirect
179187
github.com/opencontainers/image-spec v1.1.1 // indirect
180188
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
181-
github.com/pelletier/go-toml v1.9.5 // indirect
182189
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
183190
github.com/petermattis/goid v0.0.0-20250303134427-723919f7f203 // indirect
184191
github.com/pingcap/errors v0.11.5-0.20211224045212-9687c2b0f87c // indirect
@@ -210,7 +217,7 @@ require (
210217
github.com/quic-go/qpack v0.5.1 // indirect
211218
github.com/quic-go/quic-go v0.52.0 // indirect
212219
github.com/quic-go/webtransport-go v0.8.1-0.20241018022711-4ac2c9250e66 // indirect
213-
github.com/rivo/uniseg v0.4.4 // indirect
220+
github.com/rivo/uniseg v0.4.7 // indirect
214221
github.com/samber/slog-common v0.18.1 // indirect
215222
github.com/sasha-s/go-deadlock v0.3.5 // indirect
216223
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
@@ -244,8 +251,8 @@ require (
244251
go.uber.org/mock v0.5.2 // indirect
245252
go.uber.org/multierr v1.11.0 // indirect
246253
golang.org/x/mod v0.25.0 // indirect
247-
golang.org/x/sync v0.15.0 // indirect
248-
golang.org/x/sys v0.33.0 // indirect
254+
golang.org/x/sync v0.16.0 // indirect
255+
golang.org/x/sys v0.34.0 // indirect
249256
golang.org/x/tools v0.34.0 // indirect
250257
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 // indirect
251258
google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8 // indirect

0 commit comments

Comments
 (0)