87 releases (43 stable)

new 2.12.0-dev.0 Mar 25, 2025
2.10.1 Feb 19, 2025
2.10.0-rc.0 Dec 22, 2024
2.9.1 Nov 29, 2024
0.1.0 Jan 4, 2023

#865 in Magic Beans

Download history 14135/week @ 2024-12-09 7871/week @ 2024-12-16 5061/week @ 2024-12-23 5921/week @ 2024-12-30 8119/week @ 2025-01-06 8202/week @ 2025-01-13 8365/week @ 2025-01-20 9346/week @ 2025-01-27 7205/week @ 2025-02-03 7236/week @ 2025-02-10 9242/week @ 2025-02-17 13265/week @ 2025-02-24 8979/week @ 2025-03-03 10170/week @ 2025-03-10 9091/week @ 2025-03-17 7442/week @ 2025-03-24

37,552 downloads per month
Used in 16 crates (8 directly)

Custom license

4.5MB
67K SLoC

Compiling and running cairo files

cargo run --bin cairo-run -- --single-file /path/to/file.cairo

If we want to run code that is gas tested:

cargo run --bin cairo-run -- --single-file /path/to/file.cairo --available-gas 200

We currently only run the main function with no arguments besides implicits.

Example

// Calculates fib...
fn main() -> u128 {
    fib(1_u128, 1_u128, 100_u128)
}

fn fib(a: u128, b: u128, n: u128) -> u128 {
    if n == 0 {
        a
    } else {
        fib(b, a + b, n - 1_u128)
    }
}

Additional Information

  • When compiling with --available-gas, if there are cycles in the code, calls to withdraw_gas_all will be automatically added.
  • Functions with calls to withdraw_gas_all will not compile without --available-gas value.
  • Functions without calls to withdraw_gas_all will not compile with --available-gas value.
  • When running functions returning arrays --print-full-memory should probably be used, to actually see the values contained in the array.

Dependencies

~29–39MB
~650K SLoC