2024-03-08 11:57:12 +00:00
|
|
|
+++
|
|
|
|
title = "Install"
|
|
|
|
description = "Install"
|
|
|
|
weight = 1
|
|
|
|
+++
|
|
|
|
|
|
|
|
`rsspls` can be installed via one of the following methods:
|
|
|
|
|
|
|
|
* [Package Manager](#package-manager)
|
2024-03-10 04:31:33 +00:00
|
|
|
* [Download Pre-compiled Binary](#download)
|
2024-03-08 11:57:12 +00:00
|
|
|
* [Build From Source](#build-from-source)
|
|
|
|
|
2024-03-10 04:31:33 +00:00
|
|
|
Download
|
|
|
|
--------
|
2024-03-08 11:57:12 +00:00
|
|
|
|
|
|
|
Pre-compiled binaries are available for a number of platforms.
|
|
|
|
They require no additional dependencies on your computer.
|
|
|
|
|
2024-03-10 04:31:33 +00:00
|
|
|
{{ downloads() }}
|
|
|
|
|
|
|
|
This will result in the `rsspls` binary in the current directory.
|
2024-03-08 11:57:12 +00:00
|
|
|
|
2024-03-10 04:31:33 +00:00
|
|
|
Package Manager
|
|
|
|
---------------
|
2024-03-08 11:57:12 +00:00
|
|
|
|
2024-03-10 04:31:33 +00:00
|
|
|
`rsspls` is packaged in these package managers:
|
|
|
|
|
|
|
|
* AUR: [rsspls](https://aur.archlinux.org/packages/rsspls)
|
|
|
|
* Homebrew: `brew install wezm/taps/rsspls`
|
|
|
|
* MacPorts: [rsspls](https://ports.macports.org/port/rsspls/summary/)
|
2024-03-08 11:57:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
Build From Source
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
**Minimum Supported Rust Version:** 1.70.0
|
|
|
|
|
|
|
|
`rsspls` is implemented in Rust. See the Rust website for [instructions on
|
|
|
|
installing the toolchain][rustup].
|
|
|
|
|
|
|
|
### From Git Checkout or Release Tarball
|
|
|
|
|
|
|
|
Build the binary with `cargo build --release --locked`. The binary will be in
|
|
|
|
`target/release/rsspls`.
|
|
|
|
|
|
|
|
### From crates.io
|
|
|
|
|
|
|
|
`cargo install rsspls`
|
2024-03-10 04:31:33 +00:00
|
|
|
|
|
|
|
[rustup]: https://www.rust-lang.org/tools/install
|