Implement parallel processing of instructions

This commit is contained in:
2025-10-16 15:33:01 +02:00
parent cfa7fc73c9
commit 7bff91679d
3 changed files with 22 additions and 9 deletions

4
go.mod
View File

@@ -1,10 +1,11 @@
module cln
go 1.21.7
go 1.23.6
require gopkg.in/yaml.v3 v3.0.1
require (
git.site.quack-lab.dev/dave/cyutils v1.4.0
github.com/bmatcuk/doublestar/v4 v4.8.1
github.com/stretchr/testify v1.11.1
)
@@ -12,4 +13,5 @@ require (
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/time v0.12.0 // indirect
)