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
53 downloads per month
135KB
3K
SLoC
Antelope
Standard Library for Rust
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