fasthttp @ v1.25.0
integrity
- size
- 260.5 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/valyala/fasthttp
release notes
- fa3e5d8 Run test with go 1.16.X (#1028) (Sergio Andrés Virviescas Santana)
- ffa0cab Use proper content-type when it is not present (#1023) (MoreFreeze)
- 04cde74 feature: add ConvertRequest func (#1024) (Nícolas Barbosa)
- 5898006 Upgrade dependencies and tidy (#1029) (Sergio Andrés Virviescas Santana)
- 097fa05 Fix ignoreBody still set content length (#1022) (MoreFreeze)
- b2f111b Fix(adaptor): Fixed an issue where the adapter did not convert all (#1021) (Juan Chan)
- 19fcd40 Fix chunked streaming (#1015) (Roman Khimov)
download
unix · zip
curl -fL -o v1.25.0.zip https://ratatoskr.space/pkg/fasthttp/v1.25.0.zip
printf '%s %s\n' 'f33ec338dbefab169d63c2f92ba066ad95a8d95ba9f33d8bd1ce741e56b13834' 'v1.25.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fasthttp/v1.25.0.zip"
$out = "v1.25.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f33ec338dbefab169d63c2f92ba066ad95a8d95ba9f33d8bd1ce741e56b13834") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.25.0.tar.gz https://ratatoskr.space/pkg/fasthttp/v1.25.0.tar.gz
printf '%s %s\n' '8bfa9f9f79b376027d44719d54eae4aa899b0f5f9853df9b8641fade9d060dee' 'v1.25.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fasthttp/v1.25.0.tar.gz"
$out = "v1.25.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8bfa9f9f79b376027d44719d54eae4aa899b0f5f9853df9b8641fade9d060dee") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.25.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.25.0.zip
printf '%s %s\n' 'f33ec338dbefab169d63c2f92ba066ad95a8d95ba9f33d8bd1ce741e56b13834' 'v1.25.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.25.0.zip"
$out = "v1.25.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f33ec338dbefab169d63c2f92ba066ad95a8d95ba9f33d8bd1ce741e56b13834") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.25.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.25.0.tar.gz
printf '%s %s\n' '8bfa9f9f79b376027d44719d54eae4aa899b0f5f9853df9b8641fade9d060dee' 'v1.25.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.25.0.tar.gz"
$out = "v1.25.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8bfa9f9f79b376027d44719d54eae4aa899b0f5f9853df9b8641fade9d060dee") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.25.0.zip | zip | 262.5 KiB |
blake3-24 7c2475e7054b89af1886627d629f0e1d314ec3e4acf2766d
sha256 f33ec338dbefab169d63c2f92ba066ad95a8d95ba9f33d8bd1ce741e56b13834
sha1 774533f4845cc2a1166a6dda5634966c0dbc7b83
|
| v1.25.0.tar.gz | tar.gz | 216.3 KiB |
blake3-24 22ba04fe43ecf16424a1694ec3a27194e553fdd7078a53b2
sha256 8bfa9f9f79b376027d44719d54eae4aa899b0f5f9853df9b8641fade9d060dee
sha1 d7bb34416ec09a8104b79841e8c5a0d8b649b673
|
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.25.0.zip | zip | 265.5 KiB |
blake3-24 97e267e368a8694fe3f67b5321b04dee7dc60e230ad07d8a
sha256 751154555f588147c662472f6842a406a984146bcfc89fa53ce205e897d77a13
sha1 126947073f80645f29b4c38f73925f3053fc0965
|
install
bazel
http_archive(
name = "fasthttp",
urls = ["https://ratatoskr.space/pkg/fasthttp/v1.25.0.tar.gz"],
integrity = "sha256-i/qfn3mzdgJ9RHGdVOrkqombD1+YU9+bhkH63p0GDe4=",
strip_prefix = "fasthttp-v1.25.0",
)
zig
.url = "https://ratatoskr.space/pkg/fasthttp/v1.25.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fasthttp@v1.25.0
install via yggdrasil mesh
bazel
http_archive(
name = "fasthttp",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.25.0.tar.gz"],
integrity = "sha256-i/qfn3mzdgJ9RHGdVOrkqombD1+YU9+bhkH63p0GDe4=",
strip_prefix = "fasthttp-v1.25.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp/v1.25.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fasthttp@v1.25.0