Release URLs¶
Binary releases of cargo-nextest will always be available at https://get.nexte.st/{version}/{platform}.
{version} identifier¶
The {version} identifier is:
latestfor the latest release (not including pre-releases)- a version range, for example
0.9, for the latest release in the 0.9 series (not including pre-releases) - the exact version number, for example
0.9.94, for that specific version
{platform} identifier¶
The {platform} identifier is:
x86_64-unknown-linux-gnu.tar.gzfor x86_64 Linux (tar.gz)x86_64-unknown-linux-musl.tar.gzfor x86_64 Linux with musl (tar.gz)aarch64-unknown-linux-gnu.tar.gzfor aarch64 Linux (tar.gz)universal-apple-darwin.tar.gzfor x86_64 and arm64 macOS (tar.gz)x86_64-pc-windows-msvc.zipfor x86_64 Windows (zip)x86_64-pc-windows-msvc.tar.gzfor x86_64 Windows (tar.gz)i686-pc-windows-msvc.zipfor i686 Windows (zip)i686-pc-windows-msvc.tar.gzfor i686 Windows (tar.gz)aarch64-pc-windows-msvc.zipfor aarch64 Windows (zip) 0.9.94aarch64-pc-windows-msvc.tar.gzfor aarch64 Windows (tar.gz) 0.9.94x86_64-unknown-freebsd.tar.gzfor x86_64 FreeBSD (tar.gz)x86_64-unknown-illumos.tar.gzfor x86_64 illumos (tar.gz)
For convenience, the following shortcuts are defined:
linuxpoints tox86_64-unknown-linux-gnu.tar.gzlinux-muslpoints tox86_64-unknown-linux-musl.tar.gzlinux-armpoints toaarch64-unknown-linux-gnu.tar.gzmacpoints touniversal-apple-darwin.tar.gzwindowspoints tox86_64-pc-windows-msvc.zipwindows-tarpoints tox86_64-pc-windows-msvc.tar.gzwindows-x86points toi686-pc-windows-msvc.zipwindows-x86-tarpoints toi686-pc-windows-msvc.tar.gzwindows-armpoints toaarch64-pc-windows-msvc.zipwindows-arm-tarpoints toaarch64-pc-windows-msvc.tar.gzfreebsdpoints tox86_64-unknown-freebsd.tar.gzillumospoints tox86_64-unknown-illumos.tar.gz
Also, each release's canonical GitHub Releases URL is available at https://get.nexte.st/{version}/release. For example, the latest GitHub release is available at get.nexte.st/latest/release.
Examples¶
The latest nextest release in the 0.9 series for macOS is available as a tar.gz file at get.nexte.st/0.9/mac.
Nextest version 0.9.94 for x86_64 Windows is available as a zip file at get.nexte.st/0.9.94/windows, and as a tar.gz file at get.nexte.st/0.9.94/windows-tar.