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
.PHONY: test
test:
	cargo test -- --nocapture

.PHONY: doc
doc:
	cargo doc

.PHONY: open-doc
open-doc:
	cargo doc --open