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

fasthttp @ v1.13.0

integrity

size
249.8 KiB
downloaded
last checked
overlays
go
detected
go module github.com/valyala/fasthttp
source https://github.com/valyala/fasthttp · available · github

release notes

This release of fasthttp contains 3 backwards incompatible changes.

  1. A HostClient can now only be used for a single protocol. If the HostClient is redirected to a different protocol it will return an error. Use Client instead if you need this functionality (dacd035).
  2. ServeFile now return a redirect for directories without trailing slash instead of serving the directory listing (5bd1b0c)
  3. ASCII control character are not allowed in URLs anymore (079f39b)

Commits:

download

unix · zip
curl -fL -o v1.13.0.zip https://ratatoskr.space/pkg/fasthttp/v1.13.0.zip
                    printf '%s  %s\n' 'bd1b3d2a41de6e5ce3732cb2d65c2d83c02b4f45acee00900e970175c7c569bf' 'v1.13.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fasthttp/v1.13.0.zip"
$out = "v1.13.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bd1b3d2a41de6e5ce3732cb2d65c2d83c02b4f45acee00900e970175c7c569bf") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.13.0.tar.gz https://ratatoskr.space/pkg/fasthttp/v1.13.0.tar.gz
                    printf '%s  %s\n' '99cbfac15fe47ed9f1b5c24ffadb11f1efa9f43a67748593ded9e25625799422' 'v1.13.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fasthttp/v1.13.0.tar.gz"
$out = "v1.13.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "99cbfac15fe47ed9f1b5c24ffadb11f1efa9f43a67748593ded9e25625799422") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.13.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.13.0.zip
                    printf '%s  %s\n' 'bd1b3d2a41de6e5ce3732cb2d65c2d83c02b4f45acee00900e970175c7c569bf' 'v1.13.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.13.0.zip"
$out = "v1.13.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bd1b3d2a41de6e5ce3732cb2d65c2d83c02b4f45acee00900e970175c7c569bf") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.13.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.13.0.tar.gz
                    printf '%s  %s\n' '99cbfac15fe47ed9f1b5c24ffadb11f1efa9f43a67748593ded9e25625799422' 'v1.13.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.13.0.tar.gz"
$out = "v1.13.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "99cbfac15fe47ed9f1b5c24ffadb11f1efa9f43a67748593ded9e25625799422") { throw "sha256 mismatch" }
artifact format size hashes
v1.13.0.zip zip 251.8 KiB
blake3-24 351fca2065842fed6a9e66bf1395e2676c226a5a168d6f01
sha256 bd1b3d2a41de6e5ce3732cb2d65c2d83c02b4f45acee00900e970175c7c569bf
sha1 dda321899e4fc95f180d16ef4b0161b5cc65ac1d
v1.13.0.tar.gz tar.gz 208.4 KiB
blake3-24 1703ce002684a4dd5665b994f5f5a7c8cf19326a6c82566b
sha256 99cbfac15fe47ed9f1b5c24ffadb11f1efa9f43a67748593ded9e25625799422
sha1 62c330a8141117b4cedd506d62882a1758d61f3c

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
v1.13.0.zip zip 254.7 KiB
blake3-24 9879c54d81d866fc11e190da3767df1087dd63532249722e
sha256 0930e32991bd9b8757391a557998f29610ed3ae081132dc7d8437f8962534d13
sha1 702fa0cb6dd1cf20d48f8779b199cbc59c94daff

install

bazel
http_archive(
    name = "fasthttp",
    urls = ["https://ratatoskr.space/pkg/fasthttp/v1.13.0.tar.gz"],
    integrity = "sha256-mcv6wV/kftnxtcJP+tsR8e+p9DpndIWT3tniViV5lCI=",
    strip_prefix = "fasthttp-v1.13.0",
)
zig
.url = "https://ratatoskr.space/pkg/fasthttp/v1.13.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fasthttp@v1.13.0
install via yggdrasil mesh
bazel
http_archive(
    name = "fasthttp",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.13.0.tar.gz"],
    integrity = "sha256-mcv6wV/kftnxtcJP+tsR8e+p9DpndIWT3tniViV5lCI=",
    strip_prefix = "fasthttp-v1.13.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.13.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp@v1.13.0
← v1.13.1v1.12.0 →