yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/go-plugin/v0.4.0
vault / go-plugin / v0.4.0

go-plugin @ v0.4.0

integrity

size
3.0 MiB
downloaded
last checked
overlays
go
detected
go module github.com/knqyf263/go-plugin
source https://github.com/knqyf263/go-plugin · available · github

release notes

v0.4.0 fixes a bug where a plugin returned no result when it should have. Thanks @anxuanzi for the investigation and @mathetake for the fix. This also updates to the latest wazero 1.0.0-pre.4 release thanks to @codefromthecrypt. You should re-generate your source to take advantage of these improvements.

download

unix · zip
curl -fL -o v0.4.0.zip https://ratatoskr.space/pkg/go-plugin/v0.4.0.zip
                    printf '%s  %s\n' '8414ae7346851e232b4d633c62352b2f2b9a8a6ba926baf40c1bd28a51b47be9' 'v0.4.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/go-plugin/v0.4.0.zip"
$out = "v0.4.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8414ae7346851e232b4d633c62352b2f2b9a8a6ba926baf40c1bd28a51b47be9") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.4.0.tar.gz https://ratatoskr.space/pkg/go-plugin/v0.4.0.tar.gz
                    printf '%s  %s\n' '0be13a2ef95d84547001c05fa9afe0d1026822db87096002ea598fbae5a8166a' 'v0.4.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/go-plugin/v0.4.0.tar.gz"
$out = "v0.4.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0be13a2ef95d84547001c05fa9afe0d1026822db87096002ea598fbae5a8166a") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.4.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin/v0.4.0.zip
                    printf '%s  %s\n' '8414ae7346851e232b4d633c62352b2f2b9a8a6ba926baf40c1bd28a51b47be9' 'v0.4.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin/v0.4.0.zip"
$out = "v0.4.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8414ae7346851e232b4d633c62352b2f2b9a8a6ba926baf40c1bd28a51b47be9") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.4.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin/v0.4.0.tar.gz
                    printf '%s  %s\n' '0be13a2ef95d84547001c05fa9afe0d1026822db87096002ea598fbae5a8166a' 'v0.4.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin/v0.4.0.tar.gz"
$out = "v0.4.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "0be13a2ef95d84547001c05fa9afe0d1026822db87096002ea598fbae5a8166a") { throw "sha256 mismatch" }
artifact format size hashes
v0.4.0.zip zip 3.0 MiB
blake3-24 6fd39ce766e2f2606e7375969cdd406f18218d453c9ea3bf
sha256 8414ae7346851e232b4d633c62352b2f2b9a8a6ba926baf40c1bd28a51b47be9
sha1 74a50eff789741665b71a8adbd6d2f6a3bc65bae
v0.4.0.tar.gz tar.gz 2.9 MiB
blake3-24 77558ecb2509e1cf324ef8967ef44cb5cb5350fce41c06f1
sha256 0be13a2ef95d84547001c05fa9afe0d1026822db87096002ea598fbae5a8166a
sha1 34310de3ef29856bbe5fb4eb7175c821ff096aff

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.4.0.zip zip 3.0 MiB
blake3-24 ada4ccf3cf2a5c6d58eaacf020eeb63fa8d78fabf44f9c4f
sha256 c302e358c1dabb0dd62af7265964cbaab8afab75d84665754a519579bffd2876
sha1 be7dccc2ec366373aa0a838352706d4b2db13f44

install

bazel
http_archive(
    name = "go-plugin",
    urls = ["https://ratatoskr.space/pkg/go-plugin/v0.4.0.tar.gz"],
    integrity = "sha256-C+E6LvldhFRwAcBfqa/g0QJoItuHCWAC6lmPuuWoFmo=",
    strip_prefix = "go-plugin-v0.4.0",
)
zig
.url = "https://ratatoskr.space/pkg/go-plugin/v0.4.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/go-plugin@v0.4.0
install via yggdrasil mesh
bazel
http_archive(
    name = "go-plugin",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin/v0.4.0.tar.gz"],
    integrity = "sha256-C+E6LvldhFRwAcBfqa/g0QJoItuHCWAC6lmPuuWoFmo=",
    strip_prefix = "go-plugin-v0.4.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin/v0.4.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/go-plugin@v0.4.0
← v0.5.0v0.3.0 →