barley-std
This crate contains the standard library for the barley workflow engine. It provides a set of common actions that can be used in any script.
```rust use barleyruntime::prelude::*; use barleystd::thread::Sleep; use std::time::Duration;
async fn main() -> Result<(), ActionError> { tracing_subscriber::fmt::init();
let sleep1 = Sleep::new(Duration::fromsecs(1)); let sleep2 = Sleep::new(Duration::fromsecs(2));
RuntimeBuilder::new() .addaction(sleep1.into()).await .addaction(sleep2.into()).await .build() .run() .await } ```