You can download fastn
in multiple ways. The easiest way being just download the binary and install it in your local system.
Linux / MacOS Installation
You can get our pre-compiled binaries in the
Releases section.
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/ftd-lang/fastn/main/install-fastn.sh)"
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/ftd-lang/fastn/main/install-fastn.sh)"
Windows Installation
Download and map the binaries
Cargo install
the latest version
Building FASTN from Source
fastn
is open source project. You can clone the fastn git repo:
git clone git@github.com:ftd-lang/fastn.git
git clone git@github.com:ftd-lang/fastn.git
fastn
is implemented using Rust, using 2021 edition, so minimum supported Rust version (MSRV) is 1.56.0.
cd fastn
cargo test
cargo build
cd fastn
cargo test
cargo build
We would love to hear from you if you have any suggestions about the code or feature! Happy building.
Linux Dependencies
When building from source you will have to install SSL and SQLite dev packages:
sudo apt-get install libsqlite3-dev libssl-dev
sudo apt-get install libsqlite3-dev libssl-dev