Skip to content

Commit 82199d0

Browse files
fix dependencies
Signed-off-by: Thomas Poignant <thomas.poignant@gofeatureflag.org>
1 parent d481cdb commit 82199d0

File tree

8 files changed

+72
-226
lines changed

8 files changed

+72
-226
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ volume
5151
.claude/
5252

5353
go.work
54-
go.work.sum
54+
go.work.sum

go.mod

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ require (
6060
github.com/testcontainers/testcontainers-go/modules/postgres v0.39.0
6161
github.com/testcontainers/testcontainers-go/modules/redis v0.39.0
6262
github.com/thejerf/slogassert v0.3.4
63-
github.com/thomaspoignant/go-feature-flag/modules/evaluation v0.1.0
63+
github.com/thomaspoignant/go-feature-flag/modules/core v0.1.1-0.20251014100047-9b027b0c0365
64+
github.com/thomaspoignant/go-feature-flag/modules/evaluation v0.1.1-0.20251014100047-9b027b0c0365
6465
github.com/xdg-go/scram v1.1.2
6566
github.com/xitongsys/parquet-go v1.6.2
6667
github.com/xitongsys/parquet-go-source v0.0.0-20230830030807-0dd610dbff1d
@@ -97,11 +98,13 @@ require (
9798
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 // indirect
9899
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
99100
github.com/AzureAD/microsoft-authentication-library-for-go v1.5.0 // indirect
101+
github.com/GeorgeD19/json-logic-go v0.0.0-20220225111652-48cc2d2c387e // indirect
100102
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.29.0 // indirect
101103
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.53.0 // indirect
102104
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.53.0 // indirect
103105
github.com/KyleBanks/depth v1.2.1 // indirect
104106
github.com/Microsoft/go-winio v0.6.2 // indirect
107+
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
105108
github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516 // indirect
106109
github.com/apache/thrift v0.21.0 // indirect
107110
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.1 // indirect
@@ -119,6 +122,7 @@ require (
119122
github.com/aws/aws-sdk-go-v2/service/sts v1.38.6 // indirect
120123
github.com/bahlo/generic-list-go v0.2.0 // indirect
121124
github.com/beorn7/perks v1.0.1 // indirect
125+
github.com/blang/semver v3.5.1+incompatible // indirect
122126
github.com/buger/jsonparser v1.1.1 // indirect
123127
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
124128
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
@@ -130,6 +134,7 @@ require (
130134
github.com/containerd/log v0.1.0 // indirect
131135
github.com/containerd/platforms v0.2.1 // indirect
132136
github.com/cpuguy83/dockercfg v0.3.2 // indirect
137+
github.com/dariubs/percent v0.0.0-20190521174708-8153fcbd48ae // indirect
133138
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
134139
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
135140
github.com/distribution/reference v0.6.0 // indirect
@@ -207,6 +212,7 @@ require (
207212
github.com/montanaflynn/stats v0.7.1 // indirect
208213
github.com/morikuni/aec v1.0.0 // indirect
209214
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
215+
github.com/nikunjy/rules v1.5.0 // indirect
210216
github.com/opencontainers/go-digest v1.0.0 // indirect
211217
github.com/opencontainers/image-spec v1.1.1 // indirect
212218
github.com/pelletier/go-toml v1.9.5 // indirect
@@ -227,9 +233,9 @@ require (
227233
github.com/samber/slog-common v0.18.1 // indirect
228234
github.com/shirou/gopsutil/v4 v4.25.6 // indirect
229235
github.com/sirupsen/logrus v1.9.3 // indirect
236+
github.com/spf13/cast v1.3.0 // indirect
230237
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
231238
github.com/swaggo/files/v2 v2.0.0 // indirect
232-
github.com/thomaspoignant/go-feature-flag/modules/core v0.1.0 // indirect
233239
github.com/tklauser/go-sysconf v0.3.12 // indirect
234240
github.com/tklauser/numcpus v0.6.1 // indirect
235241
github.com/valyala/bytebufferpool v1.0.0 // indirect

go.sum

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
174174
github.com/BurntSushi/toml v1.5.0 h1:W5quZX/G/csjUnuI8SUYlsHs9M38FC7znL0lIO+DvMg=
175175
github.com/BurntSushi/toml v1.5.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
176176
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
177+
github.com/GeorgeD19/json-logic-go v0.0.0-20220225111652-48cc2d2c387e h1:pGKbZyClLVd95fyMC8yib8STgy76ShCwIaPOSZPhDMM=
177178
github.com/GoogleCloudPlatform/cloudsql-proxy v1.29.0/go.mod h1:spvB9eLJH9dutlbPSRmHvSXXHOwGRyeXh1jVdquA2G8=
178179
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.29.0 h1:UQUsRi8WTzhZntp5313l+CHIAT95ojUI2lpP/ExlZa4=
179180
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.29.0/go.mod h1:Cz6ft6Dkn3Et6l2v2a9/RpN7epQ1GtDlO6lj8bEcOvw=
@@ -201,6 +202,7 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo
201202
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
202203
github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU=
203204
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
205+
github.com/antlr4-go/antlr/v4 v4.13.0 h1:lxCg3LAv+EUK6t1i0y1V6/SLeUi0eKEKdhQAlS8TVTI=
204206
github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516 h1:byKBBF2CKWBjjA4J1ZL2JXttJULvWSl50LegTyRZ728=
205207
github.com/apache/arrow/go/arrow v0.0.0-20200730104253-651201b0f516/go.mod h1:QNYViu/X0HXDHw7m3KXzWSVXIbfUvJqBFe6Gj8/pYA0=
206208
github.com/apache/thrift v0.0.0-20181112125854-24918abba929/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
@@ -287,6 +289,7 @@ github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xW
287289
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
288290
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
289291
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
292+
github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
290293
github.com/bsm/ginkgo/v2 v2.12.0 h1:Ny8MWAHyOepLGlLKYmXG4IEkioBysk6GpaRTLC8zwWs=
291294
github.com/bsm/ginkgo/v2 v2.12.0/go.mod h1:SwYbGRRDovPVboqFv0tPTcG1sN61LM1Z4ARdbAV9g4c=
292295
github.com/bsm/gomega v1.27.10 h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA=
@@ -339,6 +342,7 @@ github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6N
339342
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
340343
github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY=
341344
github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4=
345+
github.com/dariubs/percent v0.0.0-20190521174708-8153fcbd48ae h1:0SUXUFz3+ksMulwvkS6XZnxCqw5ygjYJPKjpEBWNCJU=
342346
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
343347
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
344348
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -823,6 +827,8 @@ github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7P
823827
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
824828
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
825829
github.com/ncw/swift v1.0.52/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM=
830+
github.com/nikunjy/rules v1.5.0 h1:KJDSLOsFhwt7kcXUyZqwkgrQg5YoUwj+TVu6ItCQShw=
831+
github.com/nikunjy/rules v1.5.0/go.mod h1:TlZtZdBChrkqi8Lr2AXocme8Z7EsbxtFdDoKeI6neBQ=
826832
github.com/nxadm/tail v1.4.11 h1:8feyoE3OzPrcshW5/MJ4sGESc5cqmGkGCWlco4l0bqY=
827833
github.com/nxadm/tail v1.4.11/go.mod h1:OTaG3NK980DZzxbRq6lEuzgU+mug70nY11sMd4JXXHc=
828834
github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE=
@@ -922,6 +928,7 @@ github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ
922928
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
923929
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
924930
github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk=
931+
github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=
925932
github.com/spf13/cobra v1.10.1 h1:lJeBwCfmrnXthfAupyUTzJ/J4Nc1RsHC/mSRU2dll/s=
926933
github.com/spf13/cobra v1.10.1/go.mod h1:7SmJGaTHFVBY0jW4NXGluQoLvhqFQM+6XSKD+P4XaB0=
927934
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
@@ -968,10 +975,10 @@ github.com/testcontainers/testcontainers-go/modules/redis v0.39.0 h1:p54qELdCx4G
968975
github.com/testcontainers/testcontainers-go/modules/redis v0.39.0/go.mod h1:P1mTbHruHqAU2I26y0RADz1BitF59FLbQr7ceqN9bt4=
969976
github.com/thejerf/slogassert v0.3.4 h1:VoTsXixRbXMrRSSxDjYTiEDCM4VWbsYPW5rB/hX24kM=
970977
github.com/thejerf/slogassert v0.3.4/go.mod h1:0zn9ISLVKo1aPMTqcGfG1o6dWwt+Rk574GlUxHD4rs8=
971-
github.com/thomaspoignant/go-feature-flag/modules/core v0.1.0 h1:Y8cwyUeGXEoKUjcu2jaui+Vk8+Pmv1NOwPSh+ZGX+90=
972-
github.com/thomaspoignant/go-feature-flag/modules/core v0.1.0/go.mod h1:3NuUbr9jbu4fKaAbo1aHrI+dM/Vy6D+CAIJyk83Y0S0=
973-
github.com/thomaspoignant/go-feature-flag/modules/evaluation v0.1.0 h1:Pp3zB/vPquB7GbhVLC19vMXNeRIlKwSxhAKMVWekEVk=
974-
github.com/thomaspoignant/go-feature-flag/modules/evaluation v0.1.0/go.mod h1:y/bAsxUP8DbBcdYa8AK668K1yRo2DPK5sxTSEO6wOVU=
978+
github.com/thomaspoignant/go-feature-flag/modules/core v0.1.1-0.20251014100047-9b027b0c0365 h1:sdkgQom6p5dF9Jo6oENrjeIm+Dx1yHlFuhwx8gKuXwk=
979+
github.com/thomaspoignant/go-feature-flag/modules/core v0.1.1-0.20251014100047-9b027b0c0365/go.mod h1:3NuUbr9jbu4fKaAbo1aHrI+dM/Vy6D+CAIJyk83Y0S0=
980+
github.com/thomaspoignant/go-feature-flag/modules/evaluation v0.1.1-0.20251014100047-9b027b0c0365 h1:UVZnrU2XxU0+JZWaTuHTMUqDHIjwk0IEmGq2KOPb44c=
981+
github.com/thomaspoignant/go-feature-flag/modules/evaluation v0.1.1-0.20251014100047-9b027b0c0365/go.mod h1:p5uwG4P/lMmJIHptTkpYl43CVqzxYBBWz/oHqlTjPnI=
975982
github.com/tinylib/msgp v1.3.0 h1:ULuf7GPooDaIlbyvgAxBV/FI7ynli6LZ1/nVUNu+0ww=
976983
github.com/tinylib/msgp v1.3.0/go.mod h1:ykjzy2wzgrlvpDCRc4LA8UXy6D8bzMSuAF3WD57Gok0=
977984
github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU=

go.work

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)