A library for transcoding between hexadecimal strings in Astro Notation Format and Native Rust data types.
In your Cargo.toml
:
```
[dependencies] astro-notation = "1.0.0"
```
In your Rust file:
```
use astro-notation::{encode, decode};
```
| Type | Support | |---|---| | u8 | ✅ | | u16 | ✅ | | u32 | ✅ | | u64 | ✅ | | u128 | ✅ | | i8 | 🚧 | | i16 | 🚧 | | i32 | 🚧 | | i64 | 🚧 | | i128 | 🚧 | | f32 | 🚧 | | f64 | 🚧 | | bool | 🚧 | | list | ✅ | | bytes | ✅ |
Unsigned Integers
```
let int: u8 = 1;
let astronotationu8: String = encode::u8(&int);
let decodedu8: u8 = decode::asu8(&astronotationu8)?;
```
Bytes
```
let bytes: Vec
let astronotationbytes: String = encode::bytes(&bytes);
let decodedbytes: Vec
```
List
```
let list: Vec
let astronotationlist: String = encode::list(&list);
let decodedlist: Vec
```
Pull requests, bug reports and any kind of suggestion are welcome.
2022-01-03