106 releases (50 breaking)

new 0.56.0 Apr 26, 2024
0.54.0 Apr 13, 2024
0.52.0 Mar 27, 2024
0.48.1 Dec 6, 2023
0.9.2 Mar 30, 2022

#541 in Magic Beans

Download history 24/week @ 2024-01-15 36/week @ 2024-01-29 20/week @ 2024-02-05 11/week @ 2024-02-12 281/week @ 2024-02-19 94/week @ 2024-02-26 89/week @ 2024-03-04 91/week @ 2024-03-11 19/week @ 2024-03-18 129/week @ 2024-03-25 327/week @ 2024-04-01 369/week @ 2024-04-08 170/week @ 2024-04-15

996 downloads per month
Used in 8 crates (7 directly)

Apache-2.0

3.5MB
74K SLoC

Sway

build crates.io docs discord

Sway is a language developed for the Fuel blockchain. It is heavily inspired by Rust and aims to bring modern language development and performance to the blockchain ecosystem.

Documentation

For user documentation, including installing release builds, see the Sway Book: https://fuellabs.github.io/sway/latest/.

For Sway Standard library documentation, see: https://fuellabs.github.io/sway/master/std/

Also view the technical reference for the Sway programming language: https://fuellabs.github.io/sway/master/reference/

Building from Source

This section is for developing the Sway compiler and toolchain. For developing contracts and using Sway, see the above documentation section.

Dependencies

Sway is built in Rust. To begin, install the Rust toolchain following instructions at https://www.rust-lang.org/tools/install. Then configure your Rust toolchain to use Rust stable:

rustup default stable

If not already done, add the Cargo bin directory to your PATH by adding the following line to ~/.profile and restarting the shell session.

export PATH="${HOME}/.cargo/bin:${PATH}"

Building Forc

Clone the repository and build the Sway toolchain:

git clone git@github.com:FuelLabs/sway.git
cd sway
cargo build

Confirm the Sway toolchain built successfully:

cargo run --bin forc -- --help

Contributing to Sway

We welcome contributions to Sway!

Please see the Contributing To Sway section of the Sway book for guidelines and instructions to help you get started.


lib.rs:

Building, locking, fetching and updating sway projects as Forc packages.

A forc package represents a Sway project with a Forc.toml manifest file declared at its root. The project should consist of one or more Sway modules under a src directory. It may also declare a set of forc package dependencies within its manifest.

Dependencies

~88MB
~1.5M SLoC