Skip to content

Commit

Permalink
update to latest core / lab (still in branches)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Jan 16, 2025
1 parent 2a51f74 commit b7fe5d5
Show file tree
Hide file tree
Showing 34 changed files with 98 additions and 98 deletions.
4 changes: 2 additions & 2 deletions axon/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,12 +534,12 @@ func LayerActsLogRecReset(lg *elog.Logs) {
// LayerActsLogConfigGUI configures GUI for LayerActsLog Plot and LayerActs Avg Plot
func LayerActsLogConfigGUI(lg *elog.Logs, gui *egui.GUI) {
pt, _ := gui.Tabs.NewTab("LayerActs Plot")
plt := plotcore.NewPlotEditor(pt)
plt := plotcore.NewEditor(pt)
gui.Plots["LayerActs"] = plt
plt.SetTable(lg.MiscTables["LayerActs"])
pt, _ = gui.Tabs.NewTab("LayerActs Avg Plot")
plt = plotcore.NewPlotEditor(pt)
plt = plotcore.NewEditor(pt)
gui.Plots["LayerActsAvg"] = plt
plt.SetTable(lg.MiscTables["LayerActsAvg"])
}
Expand Down
12 changes: 6 additions & 6 deletions axon/simstats.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func StatLoopCounters(statsDir, currentDir *tensorfs.Node, ls *looper.Stacks, ne
tsr := levelDir.Int(name)
if start {
tsr.SetNumRows(0)
plot.SetFirstStylerTo(tsr, func(s *plot.Style) {
plot.SetFirstStyle(tsr, func(s *plot.Style) {
s.Range.SetMin(0)
})
if level.Int64() == trialLevel.Int64() {
Expand Down Expand Up @@ -262,7 +262,7 @@ func StatPerTrialMSec(statsDir *tensorfs.Node, trainMode enums.Enum, trialLevel
tsr := levelDir.Float64(name)
if start {
tsr.SetNumRows(0)
plot.SetFirstStylerTo(tsr, func(s *plot.Style) {
plot.SetFirstStyle(tsr, func(s *plot.Style) {
s.Range.SetMin(0)
})
return
Expand Down Expand Up @@ -309,7 +309,7 @@ func StatLayerActGe(statsDir *tensorfs.Node, net *Network, trainMode, trialLevel
tsr := levelDir.Float64(name)
if start {
tsr.SetNumRows(0)
plot.SetFirstStylerTo(tsr, func(s *plot.Style) {
plot.SetFirstStyle(tsr, func(s *plot.Style) {
s.Range.SetMin(0)
})
continue
Expand Down Expand Up @@ -453,7 +453,7 @@ func StatPCA(statsDir, currentDir *tensorfs.Node, net *Network, interval int, tr
tsr := levelDir.Float64(name)
if start {
tsr.SetNumRows(0)
plot.SetFirstStylerTo(tsr, func(s *plot.Style) {
plot.SetFirstStyle(tsr, func(s *plot.Style) {
s.Range.SetMin(0)
})
continue
Expand Down Expand Up @@ -502,7 +502,7 @@ func StatPrevCorSim(statsDir, currentDir *tensorfs.Node, net *Network, trialLeve
tsr := levelDir.Float64(name)
if start {
tsr.SetNumRows(0)
plot.SetFirstStylerTo(tsr, func(s *plot.Style) {
plot.SetFirstStyle(tsr, func(s *plot.Style) {
s.Range.SetMin(0).SetMax(1)
})
continue
Expand Down Expand Up @@ -561,7 +561,7 @@ func StatLevelAll(statsDir *tensorfs.Node, srcMode, srcLevel enums.Enum, styleFu
trg := tensorfs.ValueType(allDir, cl.Name(), clv.DataType(), clv.ShapeSizes()...)
if trg.Len() == 0 {
if styleFunc != nil {
plot.SetFirstStylerTo(trg, func(s *plot.Style) {
plot.SetFirstStyle(trg, func(s *plot.Style) {
styleFunc(s, clv)
})
}
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/ak-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ func (pl *AKPlot) GVRun() { //types:add
}
metadata.SetDoc(dir.Float64("Gaks"), "Gaks is the simplified AK conductance, actually used in models")
metadata.SetDoc(dir.Float64("Ms"), "Ms is the simplified AK M gate, actually used in models")
plot.SetFirstStylerTo(dir.Float64("V"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("V"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Gak", "M", "H", "Gaks"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "AK G(V)"
})
Expand Down Expand Up @@ -185,12 +185,12 @@ func (pl *AKPlot) TimeRun() { //types:add
}
}
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Gak", "M", "H"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "AK G(t)"
})
Expand Down
12 changes: 6 additions & 6 deletions chans/chanplots/gabab-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ func (pl *GababPlot) GVRun() { //types:add
dir.Float64("GgabaBstd", nv).SetFloat1D(float64(gs), vi)
}
metadata.SetDoc(dir.Float64("GgabaBstd"), "std is from code actually used in models")
plot.SetFirstStylerTo(dir.Float64("V"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("V"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"GgabaB"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "GABA-B G(V)"
})
Expand Down Expand Up @@ -146,12 +146,12 @@ func (pl *GababPlot) GSRun() { //types:add
dir.Float64("GgabaBstd_max", nv).SetFloat1D(float64(gs), si)
}
metadata.SetDoc(dir.Float64("GgabaBstd_max"), "std is from code actually used in models")
plot.SetFirstStylerTo(dir.Float64("S"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("S"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"GgabaB_max"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "GABAB G(spike)"
})
Expand Down Expand Up @@ -198,12 +198,12 @@ func (pl *GababPlot) TimeRun() { //types:add
}
metadata.SetDoc(dir.Float64("GabaBstd"), "std is from code actually used in models")
metadata.SetDoc(dir.Float64("GabaBXstd"), "std is from code actually used in models")
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"GabaB", "GabaBX"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "GABAB G(t)"
})
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/kir-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ func (pl *KirPlot) GVRun() { //types:add
dir.Float64("Minf", nv).SetFloat1D(float64(minf), vi)
dir.Float64("Mtau", nv).SetFloat1D(float64(mtau), vi)
}
plot.SetFirstStylerTo(dir.Float64("V"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("V"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"GkIR", "M"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "kIR G(V)"
})
Expand Down Expand Up @@ -153,12 +153,12 @@ func (pl *KirPlot) TimeRun() { //types:add
}
}
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"V", "GkIR", "M"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "GkIR G(t)"
})
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/mahp-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ func (pl *MahpPlot) GVRun() { //types:add
dir.Float64("Ninf", nv).SetFloat1D(float64(ninf), vi)
dir.Float64("Tau", nv).SetFloat1D(float64(tau), vi)
}
plot.SetFirstStylerTo(dir.Float64("V"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("V"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Ninf", "Tau"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "Mahp G(V)"
})
Expand Down Expand Up @@ -148,12 +148,12 @@ func (pl *MahpPlot) TimeRun() { //types:add
}
}
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"GmAHP", "N"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "Mahp G(t)"
})
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/nmda-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ func (pl *NMDAPlot) GVRun() { //types:add
dir.Float64("Ca", nv).SetFloat1D(float64(ca), vi)
}
metadata.SetDoc(dir.Float64("Gnmda_std"), "std is the standard equations actually used in models")
plot.SetFirstStylerTo(dir.Float64("V"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("V"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Gnmda"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "NMDA G(V)"
})
Expand Down Expand Up @@ -154,12 +154,12 @@ func (pl *NMDAPlot) TimeRun() { //types:add
dir.Float64("Gnmda", nv).SetFloat1D(g, ti)
dir.Float64("NMDA", nv).SetFloat1D(nmda, ti)
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Gnmda", "NMDA"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "NMDA G(t)"
})
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/sahp-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ func (pl *SahpPlot) GCaRun() { //types:add
dir.Float64("Ninf", nv).SetFloat1D(float64(ninf), vi)
dir.Float64("Tau", nv).SetFloat1D(float64(tau), vi)
}
plot.SetFirstStylerTo(dir.Float64("Ca"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Ca"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Ninf", "Tau"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "sAHP G(Ca)"
})
Expand Down Expand Up @@ -121,12 +121,12 @@ func (pl *SahpPlot) TimeRun() { //types:add
ca = mp.CaInt(ca, pl.TimeCaD)
n += dn
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Ca", "GsAHP", "N"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "sAHP G(t)"
})
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/skca-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ func (pl *SKCaPlot) GCaRun() { //types:add
dir.Float64("Mhill", nv).SetFloat1D(float64(mh), vi)
dir.Float64("Mgw06", nv).SetFloat1D(float64(mg), vi)
}
plot.SetFirstStylerTo(dir.Float64("Ca"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Ca"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Mhill", "Mgw06"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "sK Ca G(Ca)"
})
Expand Down Expand Up @@ -133,12 +133,12 @@ func (pl *SKCaPlot) TimeRun() { //types:add
// todo: update
// ss.CaParams.FromSpike(spike, &caM, &caP, &caD)
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Spike", "CaIn", "CaR", "M"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "sK Ca G(t)"
})
Expand Down
4 changes: 2 additions & 2 deletions chans/chanplots/synca-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@ func (pl *SynCaPlot) TimeRun() { //types:add
di += float64(pl.CaDt.DDt) * (pi - di)

}
plot.SetFirstStylerTo(dir.Float64("t"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("t"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"m", "p", "d"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "SynCa"
})
Expand Down
8 changes: 4 additions & 4 deletions chans/chanplots/vgcc-plot.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ func (pl *VGCCPlot) GVRun() { //types:add
dir.Float64("dM", nv).SetFloat1D(float64(dm), vi)
dir.Float64("dH", nv).SetFloat1D(float64(dh), vi)
}
plot.SetFirstStylerTo(dir.Float64("V"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("V"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Gvgcc", "M", "H"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "VGCC G(V)"
})
Expand Down Expand Up @@ -151,12 +151,12 @@ func (pl *VGCCPlot) TimeRun() { //types:add
}
}
}
plot.SetFirstStylerTo(dir.Float64("Time"), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64("Time"), func(s *plot.Style) {
s.Role = plot.X
})
ons := []string{"Gvgcc", "V", "M", "H"}
for _, on := range ons {
plot.SetFirstStylerTo(dir.Float64(on), func(s *plot.Style) {
plot.SetFirstStyle(dir.Float64(on), func(s *plot.Style) {
s.On = true
s.Plot.Title = "VGCC G(t)"
})
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ module github.com/emer/axon/v2
go 1.22

require (
cogentcore.org/core v0.3.8-0.20250113105110-b73be80edead
cogentcore.org/lab v0.0.0-20250109203708-c742f9552551
cogentcore.org/core v0.3.8-0.20250116184504-a8f1ea77c96a
cogentcore.org/lab v0.0.0-20250116190940-0b99b79306a7
github.com/anthonynsimon/bild v0.13.0
github.com/cogentcore/yaegi v0.0.0-20240724064145-e32a03faad56
github.com/emer/emergent/v2 v2.0.0-dev0.1.7.0.20241223211126-97d70964931f
github.com/emer/emergent/v2 v2.0.0-dev0.1.7.0.20250116192121-bef0fa284613
github.com/emer/v1vision v0.1.1-0.20241223003153-dd6818448b3b
github.com/stretchr/testify v1.9.0
gitlab.com/gomidi/midi/v2 v2.0.30
Expand Down Expand Up @@ -49,7 +49,7 @@ require (
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/image v0.18.0 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
Expand Down
16 changes: 8 additions & 8 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cogentcore.org/core v0.3.8-0.20250113105110-b73be80edead h1:aBcVq6+4XbhphORwy1oyZUGbTSkKMkzyxKnM5Oo/O1c=
cogentcore.org/core v0.3.8-0.20250113105110-b73be80edead/go.mod h1:Ipnb14B+l0qLzjvcvCIhnDucV9H9RyuqS4knZz5kB8A=
cogentcore.org/lab v0.0.0-20250109203708-c742f9552551 h1:aHaTWuqrsVKnwrcPACwAGy8v0KN5bCxgDqcwfzjtsmA=
cogentcore.org/lab v0.0.0-20250109203708-c742f9552551/go.mod h1:cFjKEyMK/eCST7x6sGCGjC12iY+/vcgZime7ASFnM/k=
cogentcore.org/core v0.3.8-0.20250116184504-a8f1ea77c96a h1:xCB5wB7hkL7/y2dLNfXr4Hd8SMwpdmk6NQi9mqhItnI=
cogentcore.org/core v0.3.8-0.20250116184504-a8f1ea77c96a/go.mod h1:X82rE06Zg1s8KHqm4IlnTzk2kBjNGScRlUHsui5vRj4=
cogentcore.org/lab v0.0.0-20250116190940-0b99b79306a7 h1:+ZilP89A6Fzz6W/QX/l2OVtfTLFPUr+hEH7z7ZoTWyE=
cogentcore.org/lab v0.0.0-20250116190940-0b99b79306a7/go.mod h1:Tu7zXJLh01yQrNL9ojRtY54hNL5sDYYzo3Ab37kNqMo=
github.com/Bios-Marcel/wastebasket v0.0.4-0.20240213135800-f26f1ae0a7c4 h1:6lx9xzJAhdjq0LvVfbITeC3IH9Fzvo1aBahyPu2FuG8=
github.com/Bios-Marcel/wastebasket v0.0.4-0.20240213135800-f26f1ae0a7c4/go.mod h1:FChzXi1izqzdPb6BiNZmcZLGyTYiT61iGx9Rxx9GNeI=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
Expand Down Expand Up @@ -38,8 +38,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dlclark/regexp2 v1.11.0 h1:G/nrcoOa7ZXlpoa/91N3X7mM3r8eIlMBBJZvsz/mxKI=
github.com/dlclark/regexp2 v1.11.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
github.com/emer/emergent/v2 v2.0.0-dev0.1.7.0.20241223211126-97d70964931f h1:8BClX4zufSO1UcFqrWaHLOebvEEeZoXAf2cbSJL5tl4=
github.com/emer/emergent/v2 v2.0.0-dev0.1.7.0.20241223211126-97d70964931f/go.mod h1:Ty+hS7cpIhBvrtq6TzNClkx5PU/d7ob+YrIpHoURwis=
github.com/emer/emergent/v2 v2.0.0-dev0.1.7.0.20250116192121-bef0fa284613 h1:zPCKB06yq0CNE2n8uuEZKWChOgRoN4Bhwd1VZJry6bs=
github.com/emer/emergent/v2 v2.0.0-dev0.1.7.0.20250116192121-bef0fa284613/go.mod h1:kWXpQFYstjmqi2zs25uGmORzIJoWMG6IDaiOYA3FNbw=
github.com/emer/v1vision v0.1.1-0.20241223003153-dd6818448b3b h1:UBArUDbvn8BWihXRqQldTAao2KmbJmxZwWo9BJB+O1s=
github.com/emer/v1vision v0.1.1-0.20241223003153-dd6818448b3b/go.mod h1:UxlVgZX0apfnWPXD9XOkaC4TnZkQhgU8D3G2Lj20sTg=
github.com/ergochat/readline v0.1.2 h1:zxiwQB8DyTLD0HSWthJlnvs5E2X1qnyXZ44RFf1jRlg=
Expand Down Expand Up @@ -134,8 +134,8 @@ golang.org/x/image v0.18.0/go.mod h1:4yyo5vMFQjVjUcVk4jEQcU9MGy/rulF5WvUILseCM2E
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE=
golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
Expand Down
Loading

0 comments on commit b7fe5d5

Please sign in to comment.