reticulum @ 0.2.0
integrity
- size
- 1.3 MiB
- downloaded
- last checked
release notes
This is the first beta release of RNS. This release also marks the publication of the Reticulum documentation, manual, and API documentation. All core features of Reticulum are now implemented, functional and ready to use in external programs. The wire-format and API will only change if there is a very good reason, though internals are still likely to be altered and optimised, and features are likely to be added.
download
unix · zip
curl -fL -o 0.2.0.zip https://ratatoskr.space/pkg/reticulum/0.2.0.zip
printf '%s %s\n' '2c50fd91a8b0566526e638abf09f42c7992184936df6b0672a62ec53ab3c0fd1' '0.2.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.2.0.zip"
$out = "0.2.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2c50fd91a8b0566526e638abf09f42c7992184936df6b0672a62ec53ab3c0fd1") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.2.0.tar.gz https://ratatoskr.space/pkg/reticulum/0.2.0.tar.gz
printf '%s %s\n' '4d76c2459e4e4c0dd01291ead9e36fe0b1e10467a9d1a76095683be18f88c6dd' '0.2.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.2.0.tar.gz"
$out = "0.2.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "4d76c2459e4e4c0dd01291ead9e36fe0b1e10467a9d1a76095683be18f88c6dd") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.2.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.0.zip
printf '%s %s\n' '2c50fd91a8b0566526e638abf09f42c7992184936df6b0672a62ec53ab3c0fd1' '0.2.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.0.zip"
$out = "0.2.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2c50fd91a8b0566526e638abf09f42c7992184936df6b0672a62ec53ab3c0fd1") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.2.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.0.tar.gz
printf '%s %s\n' '4d76c2459e4e4c0dd01291ead9e36fe0b1e10467a9d1a76095683be18f88c6dd' '0.2.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.0.tar.gz"
$out = "0.2.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "4d76c2459e4e4c0dd01291ead9e36fe0b1e10467a9d1a76095683be18f88c6dd") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.2.0.zip | zip | 1.3 MiB |
blake3-24 0b94a6c3e7453ea967897417ffccc7b01bb5a9f3ac682c54
sha256 2c50fd91a8b0566526e638abf09f42c7992184936df6b0672a62ec53ab3c0fd1
sha1 f144a3b8691efdba136f3947e99851e00e6230ba
|
| 0.2.0.tar.gz | tar.gz | 1.3 MiB |
blake3-24 5875556e9ca1af2c38c7ec4b799fb569590ae3a7c0c44f9e
sha256 4d76c2459e4e4c0dd01291ead9e36fe0b1e10467a9d1a76095683be18f88c6dd
sha1 8d02ab7d320b318b572584766e4b0fe8c62585ae
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.2.0.tar.gz"],
integrity = "sha256-TXbCRZ5OTA3QEpHq2eNv4LHhBGep0adglWg74Y+Ixt0=",
strip_prefix = "reticulum-0.2.0",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.2.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.0.tar.gz"],
integrity = "sha256-TXbCRZ5OTA3QEpHq2eNv4LHhBGep0adglWg74Y+Ixt0=",
strip_prefix = "reticulum-0.2.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.0.tar.gz",