Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
05cc6b08ce | ||
|
|
1e23bdb2e0 |
2
.github/workflows/build.sh
vendored
2
.github/workflows/build.sh
vendored
@@ -7,6 +7,6 @@ do
|
|||||||
platform_split=(${platform//\// })
|
platform_split=(${platform//\// })
|
||||||
GOOS=${platform_split[0]}
|
GOOS=${platform_split[0]}
|
||||||
GOARCH=${platform_split[1]}
|
GOARCH=${platform_split[1]}
|
||||||
env GOOS=$GOOS GOARCH=$GOARCH go build -ldflags "-X github.com/hyprspace/hyprspace/cli.appVersion=$1" -o hyprspace-$1-${GOOS}-${GOARCH} .
|
env GOOS=$GOOS GOARCH=$GOARCH CGO_ENABLED=0 go build -ldflags "-s -w -X github.com/hyprspace/hyprspace/cli.appVersion=$1" -o hyprspace-$1-${GOOS}-${GOARCH} .
|
||||||
|
|
||||||
done
|
done
|
||||||
1
go.mod
1
go.mod
@@ -6,6 +6,7 @@ require (
|
|||||||
github.com/DataDrake/cli-ng/v2 v2.0.2
|
github.com/DataDrake/cli-ng/v2 v2.0.2
|
||||||
github.com/hashicorp/go-version v1.2.1 // indirect
|
github.com/hashicorp/go-version v1.2.1 // indirect
|
||||||
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf
|
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf
|
||||||
|
github.com/ipfs/go-datastore v0.4.5
|
||||||
github.com/kr/text v0.2.0 // indirect
|
github.com/kr/text v0.2.0 // indirect
|
||||||
github.com/libp2p/go-libp2p v0.14.1
|
github.com/libp2p/go-libp2p v0.14.1
|
||||||
github.com/libp2p/go-libp2p-core v0.8.5
|
github.com/libp2p/go-libp2p-core v0.8.5
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"github.com/ipfs/go-datastore"
|
||||||
"github.com/libp2p/go-libp2p"
|
"github.com/libp2p/go-libp2p"
|
||||||
"github.com/libp2p/go-libp2p-core/crypto"
|
"github.com/libp2p/go-libp2p-core/crypto"
|
||||||
"github.com/libp2p/go-libp2p-core/host"
|
"github.com/libp2p/go-libp2p-core/host"
|
||||||
@@ -38,10 +39,7 @@ func CreateNode(ctx context.Context, inputKey string, port int, handler network.
|
|||||||
node.SetStreamHandler(Protocol, handler)
|
node.SetStreamHandler(Protocol, handler)
|
||||||
|
|
||||||
// Create DHT Subsystem
|
// Create DHT Subsystem
|
||||||
dhtOut, err = dht.New(ctx, node)
|
dhtOut = dht.NewDHTClient(ctx, node, datastore.NewMapDatastore())
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Define Bootstrap Nodes.
|
// Define Bootstrap Nodes.
|
||||||
peers := []string{
|
peers := []string{
|
||||||
|
|||||||
Reference in New Issue
Block a user