antelope

Crates.ioantelope
lib.rsantelope
version0.2.0
sourcesrc
created_at2023-01-18 03:03:00.505568
updated_at2024-03-21 23:51:16.535413
descriptionAntelope Standard Library
homepagehttps://github.com/pinax-network/antelope.rs
repositoryhttps://github.com/pinax-network/antelope.rs
max_upload_size
id761486
size154,448
Yaro Shkvorets (YaroShkvorets)

documentation

README

Antelope Standard Library for Rust

github crates.io docs.rs GitHub Workflow Status

Implements most commonly used Antelope C++ Classes into Rust.

📖 Documentation

https://docs.rs/antelope

🛠 Feature Roadmap

Install

$ cargo add antelope

Quickstart

use antelope::{SymbolCode};

let symcode = SymbolCode::from("FOO");
assert_eq!(5197638, symcode.raw());
assert_eq!(3, symcode.length());
assert_eq!(true, symcode.is_valid());
assert_eq!("FOO", symcode.to_string());
Commit count: 118

cargo fmt