Rust Astro Notation

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

Usage

In your Cargo.toml:

```

[dependencies] astro-notation = "3.1.0"

```

In your Rust file:

```

use astro_notation::{encode, decode};

```

Features

Support

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

API

Boolean

```

let astro_bool: String = encode::bool(&true);

let decodedbool: bool = decode::asbool(&astro_bool);

```

String

```

let str: String = "hello".to_string();

let astro_str: String = encode::str(&int);

let decodedstr: String = decode::asu8(&astro_str);

```

Unsigned Integers

```

let astrou8: String = encode::u8(&8u8);

let decodedu8: u8 = decode::asu8(&astro_u8);

```

Bytes

```

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

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

let decodedbytes: Vec = decode::asbytes(&astro_bytes);

```

List

```

use astro_notation::list;

let list: Vec> = vec![ vec![1,2,3], vec![4,5,6], vec![7,8,9] ];

let astrolist: String = list::frombytes(&list);

let decodedlist: Vec> = list::asbytes(&astro_list);

```

Contribution

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

2022-02-18