[asciicast]

Build Status

A Rust library for working with the Asciicast file format. Asciicast is used by Asciinema to play back terminal recordings.

Installation

asciicast is available on crates.io and can be included in your Cargo enabled project like this:

toml [dependencies] asciicast = "0.2.0"

Then include it in your code like this:

rust extern crate asciicast;

Usage

This library exports version 2 of the asciicast format by default. Version 1 will eventually be available as a subcrate.

Example (v2)

```rust extern crate asciicast;

let entry = asciicast::Entry { time: 1.234, eventtype: asciicast::EventType::Output, eventdata: String::new("text data"), };

println!("{:?}", entry); ```

License

asciicast is licensed under either of the following, at your option: