vault / meilisearch / v0.8.1
meilisearch @ v0.8.1
integrity
- size
- 12.4 MiB
- downloaded
- last checked
release notes
Now you will be able to send updates to the HTTP server without having to wait for it to process anything but the body parsing (#340).
download
unix · zip
curl -fL -o v0.8.1.zip https://ratatoskr.space/pkg/meilisearch/v0.8.1.zip
printf '%s %s\n' '7cc887f6705acfe04a77e37331bbb91ee7e3a9314ea330edbc58bd10aebeb20c' 'v0.8.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v0.8.1.zip"
$out = "v0.8.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7cc887f6705acfe04a77e37331bbb91ee7e3a9314ea330edbc58bd10aebeb20c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.8.1.tar.gz https://ratatoskr.space/pkg/meilisearch/v0.8.1.tar.gz
printf '%s %s\n' 'a84092fe394ef26069107cd318ee66e1b1ade0926cd3f481d8aabb557c69c737' 'v0.8.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v0.8.1.tar.gz"
$out = "v0.8.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a84092fe394ef26069107cd318ee66e1b1ade0926cd3f481d8aabb557c69c737") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.8.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.8.1.zip
printf '%s %s\n' '7cc887f6705acfe04a77e37331bbb91ee7e3a9314ea330edbc58bd10aebeb20c' 'v0.8.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.8.1.zip"
$out = "v0.8.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7cc887f6705acfe04a77e37331bbb91ee7e3a9314ea330edbc58bd10aebeb20c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.8.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.8.1.tar.gz
printf '%s %s\n' 'a84092fe394ef26069107cd318ee66e1b1ade0926cd3f481d8aabb557c69c737' 'v0.8.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.8.1.tar.gz"
$out = "v0.8.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a84092fe394ef26069107cd318ee66e1b1ade0926cd3f481d8aabb557c69c737") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v0.8.1.zip | zip | 12.4 MiB |
blake3-24 7c9397f6b5257ac4a685bddb7685e4081a4b47ca074c8120
sha256 7cc887f6705acfe04a77e37331bbb91ee7e3a9314ea330edbc58bd10aebeb20c
sha1 4729acfa5a915ff536c10c766777c7a1801f9197
|
| v0.8.1.tar.gz | tar.gz | 12.3 MiB |
blake3-24 7ab5d08c4138cc62f757d9a82018f654ace55a6de4951f5c
sha256 a84092fe394ef26069107cd318ee66e1b1ade0926cd3f481d8aabb557c69c737
sha1 386bc0caf7544c9f70a51ce271b4a7fdd5c477ff
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v0.8.1.tar.gz"],
integrity = "sha256-qECS/jlO8mBpEHzTGO5m4bGt4JJs0/SB2Kq7VXxpxzc=",
strip_prefix = "meilisearch-v0.8.1",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v0.8.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.8.1.tar.gz"],
integrity = "sha256-qECS/jlO8mBpEHzTGO5m4bGt4JJs0/SB2Kq7VXxpxzc=",
strip_prefix = "meilisearch-v0.8.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.8.1.tar.gz",