/ actor / go.mod
go.mod
 1  module github.com/lightningnetwork/lnd/actor
 2  
 3  go 1.25.5
 4  
 5  require (
 6  	github.com/btcsuite/btclog/v2 v2.0.1-0.20250602222548-9967d19bb084
 7  	github.com/lightningnetwork/lnd/fn/v2 v2.0.8
 8  	github.com/stretchr/testify v1.8.1
 9  	pgregory.net/rapid v1.2.0
10  )
11  
12  require (
13  	github.com/btcsuite/btclog v0.0.0-20241003133417-09c4e92e319c // indirect
14  	github.com/davecgh/go-spew v1.1.1 // indirect
15  	github.com/pmezard/go-difflib v1.0.0 // indirect
16  	golang.org/x/exp v0.0.0-20231226003508-02704c960a9b // indirect
17  	golang.org/x/sync v0.7.0 // indirect
18  	gopkg.in/yaml.v3 v3.0.1 // indirect
19  )