vault / yggdrasil-go / v0.5.2
yggdrasil-go @ v0.5.2
integrity
- size
- 146.8 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/yggdrasil-network/yggdrasil-go
release notes
Added
- New
-publickeycommand line option that prints the derived public key from a configuration file - Support for connecting to TLS peers via SOCKS with the new
sockstls://link schema
Changed
- Stabilise tree parent selection algorithm
- Improved logging when the TUN interface fails to set up
Fixed
- Fixed a panic that could occur when a connection reaches an inconsistent error state
- The admin socket will now report more peering handshake error conditions in
getPeers - Yggdrasil will no longer panic at startup when duplicate peers are configured
- The
buildscript will no longer incorrectly importLDFLAGSfrom the environment
download
unix · zip
curl -fL -o v0.5.2.zip https://ratatoskr.space/pkg/yggdrasil-go/v0.5.2.zip
printf '%s %s\n' '984f152e962dc3cebe0e1ec992a2999a5f636acde6aabebce3c1bf35a8aeb595' 'v0.5.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/yggdrasil-go/v0.5.2.zip"
$out = "v0.5.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "984f152e962dc3cebe0e1ec992a2999a5f636acde6aabebce3c1bf35a8aeb595") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.5.2.tar.gz https://ratatoskr.space/pkg/yggdrasil-go/v0.5.2.tar.gz
printf '%s %s\n' '98d71499905294b761d08500ec34a3af75782aaecfe52be6d9ccb4b925d219f2' 'v0.5.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/yggdrasil-go/v0.5.2.tar.gz"
$out = "v0.5.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "98d71499905294b761d08500ec34a3af75782aaecfe52be6d9ccb4b925d219f2") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.5.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go/v0.5.2.zip
printf '%s %s\n' '984f152e962dc3cebe0e1ec992a2999a5f636acde6aabebce3c1bf35a8aeb595' 'v0.5.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go/v0.5.2.zip"
$out = "v0.5.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "984f152e962dc3cebe0e1ec992a2999a5f636acde6aabebce3c1bf35a8aeb595") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.5.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go/v0.5.2.tar.gz
printf '%s %s\n' '98d71499905294b761d08500ec34a3af75782aaecfe52be6d9ccb4b925d219f2' 'v0.5.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go/v0.5.2.tar.gz"
$out = "v0.5.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "98d71499905294b761d08500ec34a3af75782aaecfe52be6d9ccb4b925d219f2") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v0.5.2.zip | zip | 144.6 KiB |
blake3-24 df2615355a67196fa747bc5895303650c1936f66ececaed8
sha256 984f152e962dc3cebe0e1ec992a2999a5f636acde6aabebce3c1bf35a8aeb595
sha1 3f13dd8c6843a00d9a26bf4ba5a35db0f4780e8a
|
| v0.5.2.tar.gz | tar.gz | 101.3 KiB |
blake3-24 0885d8d8172a3d8b9456d2a70981fd27b549d74a5a82c661
sha256 98d71499905294b761d08500ec34a3af75782aaecfe52be6d9ccb4b925d219f2
sha1 ab0e59be9fa6f2b2d599eaa359dd58aca35c4090
|
go module archive
module zip with the module path rewritten to this mirror; fetched by go get through the
GOPROXY route
| artifact | format | size | hashes |
|---|---|---|---|
| v0.5.2.zip | zip | 147.2 KiB |
blake3-24 c707ca4cdc2a4222dd86182fc7d88c4e87efee7f00f1859e
sha256 5e85203711a24449b0db05063be4c048ae6754ab392259a691708ac25a95ad9f
sha1 2dc86be337be899e0fadc3528502bff88048182f
|
install
bazel
http_archive(
name = "yggdrasil-go",
urls = ["https://ratatoskr.space/pkg/yggdrasil-go/v0.5.2.tar.gz"],
integrity = "sha256-mNcUmZBSlLdh0IUA7DSjr3V4Kq7P5Svm2cy0uSXSGfI=",
strip_prefix = "yggdrasil-go-v0.5.2",
)
zig
.url = "https://ratatoskr.space/pkg/yggdrasil-go/v0.5.2.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/yggdrasil-go@v0.5.2
install via yggdrasil mesh
bazel
http_archive(
name = "yggdrasil-go",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go/v0.5.2.tar.gz"],
integrity = "sha256-mNcUmZBSlLdh0IUA7DSjr3V4Kq7P5Svm2cy0uSXSGfI=",
strip_prefix = "yggdrasil-go-v0.5.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go/v0.5.2.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/yggdrasil-go@v0.5.2