#language #scripting #scripting-language

no-std rune

The Rune Language, an embeddable dynamic programming language for Rust

41 releases

0.13.1 Oct 10, 2023
0.12.4 Jun 9, 2023
0.12.3 Mar 24, 2023
0.12.0 Jun 11, 2022
0.0.0 Jul 12, 2018

#17 in Programming languages

Download history 158/week @ 2023-08-11 214/week @ 2023-08-18 199/week @ 2023-08-25 105/week @ 2023-09-01 150/week @ 2023-09-08 222/week @ 2023-09-15 60/week @ 2023-09-22 115/week @ 2023-09-29 197/week @ 2023-10-06 155/week @ 2023-10-13 190/week @ 2023-10-20 244/week @ 2023-10-27 171/week @ 2023-11-03 178/week @ 2023-11-10 159/week @ 2023-11-17 192/week @ 2023-11-24

731 downloads per month
Used in 9 crates

MIT/Apache

4.5MB
99K SLoC

rune logo
Visit the site 🌐Read the book 📖

rune

github crates.io docs.rs build status chat on discord

The Rune Language, an embeddable dynamic programming language for Rust.


Contributing

If you want to help out, please have a look at Open Issues.


Highlights of Rune


Rune scripts

You can run Rune programs with the bundled CLI:

cargo run --bin rune -- run scripts/hello_world.rn

If you want to see detailed diagnostics of your program while it's running, you can use:

cargo run --bin rune -- run scripts/hello_world.rn --dump-unit --trace --dump-vm

See --help for more information.


Running scripts from Rust

You can find more examples in the examples folder.

The following is a complete example, including rich diagnostics using termcolor. It can be made much simpler if this is not needed.

use rune::{Context, Diagnostics, Source, Sources, Vm};
use rune::termcolor::{ColorChoice, StandardStream};
use std::sync::Arc;

let context = Context::with_default_modules()?;
let runtime = Arc::new(context.runtime()?);

let mut sources = Sources::new();
sources.insert(Source::memory("pub fn add(a, b) { a + b }")?);

let mut diagnostics = Diagnostics::new();

let result = rune::prepare(&mut sources)
    .with_context(&context)
    .with_diagnostics(&mut diagnostics)
    .build();

if !diagnostics.is_empty() {
    let mut writer = StandardStream::stderr(ColorChoice::Always);
    diagnostics.emit(&mut writer, &sources)?;
}

let unit = result?;
let mut vm = Vm::new(runtime, Arc::new(unit));

let output = vm.call(["add"], (10i64, 20i64))?;
let output: i64 = rune::from_value(output)?;

println!("{}", output);

Dependencies

~3–19MB
~239K SLoC