17 releases

0.2.0 Mar 21, 2024
0.1.6 Mar 20, 2024
0.1.5 Apr 24, 2023
0.1.0 Mar 23, 2023
0.0.9 Jan 19, 2023

#375 in #blockchain

Download history 188/week @ 2024-07-02 85/week @ 2024-07-09 5/week @ 2024-07-30 4/week @ 2024-09-17 32/week @ 2024-09-24 1/week @ 2024-10-01 16/week @ 2024-10-08

53 downloads per month

MIT/Apache

135KB
3K SLoC

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());

Dependencies

~755KB
~13K SLoC