bcd-convert 0.1.0

A Rust library for encoding and decoding numbers in Binary Coded Decimal (BCD) format, supporting conversions between integers, strings, and raw BCD data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "bcd-convert"
version = "0.1.0"
edition = "2021"

readme = "README.md"
license = "MIT"
authors = ["Hiroaki Sano <hiroaki.sano.9stories@gmail.com>"]
repository = "https://github.com/hiroakis/bcd-convert"
homepage = "https://github.com/hiroakis/bcd-convert"
description = "A Rust library for encoding and decoding numbers in Binary Coded Decimal (BCD) format, supporting conversions between integers, strings, and raw BCD data."
documentation = "https://docs.rs/bcd-convert"
keywords = ["bcd", "binary-coded-decimal", "numeric"]
categories = ["encoding"]

[dependencies]
thiserror= "1"