Rust Astro Notation

A library for transcoding between hexadecimal strings in Astro Notation Format and Native Rust data types.

Usage

In your Cargo.toml:

```

[dependencies] astro-notation = "1.0.0"

```

In your Rust file:

```

use astro-notation::{encode, decode};

```

Features

Support

| Type | Support | |---|---| | u8 | ✅ | | u16 | ✅ | | u32 | ✅ | | u64 | ✅ | | u128 | ✅ | | i8 | 🚧 | | i16 | 🚧 | | i32 | 🚧 | | i64 | 🚧 | | i128 | 🚧 | | f32 | 🚧 | | f64 | 🚧 | | bool | 🚧 | | list | ✅ | | bytes | ✅ |

API

Unsigned Integers

```

let int: u8 = 1;

let astronotationu8: String = encode::u8(&int);

let decodedu8: u8 = decode::asu8(&astronotationu8)?;

```

Bytes

```

let bytes: Vec = vec![1,2,3];

let astronotationbytes: String = encode::bytes(&bytes);

let decodedbytes: Vec = decode::asbytes(&astronotationbytes)?;

```

List

```

let list: Vec = vec!["one".tostring(), "two".tostring(), "three".to_string()];

let astronotationlist: String = encode::list(&list);

let decodedlist: Vec = decode::aslist(&astronotationlist)?;

```

Contribution

Pull requests, bug reports and any kind of suggestion are welcome.

2022-01-03