cashmere

cashmere

how to use rust with crates in org babel

Example

extern crate tokio;

fn main() {
    tokio::runtime::Runtime::new()
        .unwrap()
        .block_on(async {
            tokio::time::sleep(tokio::time::Duration::from_millis(10)).await;
            println!("hello world");
        });
}