Antelope Rust library

Build Status License Crates.io

Antelope common library.

Implements most commonly used Antelop (EOSIO) C++ Classes into Rust.

Support for

Install

Cargo.toml

toml [dependencies] antelope = "0.0.1"

Quickstart

```rust use antelope::{SymbolCode};

let symcode = SymbolCode::from("EOS".to_string()); let raw: u64 = symcode.raw(); // => 5459781 ```