Crates.io | str_to_bytes |
lib.rs | str_to_bytes |
version | 0.2.3 |
source | src |
created_at | 2022-10-21 05:25:09.94984 |
updated_at | 2022-11-14 12:25:09.219583 |
description | parse a string representations of numbers or ascii text and return a Vec |
homepage | |
repository | https://github.com/Yohannfra/str_to_bytes |
max_upload_size | |
id | 693197 |
size | 16,753 |
A library to parse a string representations of numbers or ascii text and return a Vec<u8>
.
This library was originally created to be used in bluerepl
"0xff 0xfa 0b11" => [0xff, 0xfa, 0b11]
"0b01 ASCII(abc) 12 44 0x35" => [0b01, 97, 98, 99, 12, 44, 0x35]
...
This library is licensed under the terms of the MIT license.