1 stable release
1.0.0 | Sep 2, 2022 |
---|
#79 in #converting
Used in dental-notation-cli
29KB
883 lines
Dental notation
Small library for converting between different dental notations
lib.rs
:
This crate provides seralizing and deserializing from different text representation of dental notations. You can find the different available notation in the enum [NotationKind].
It primarily exposes one struct, [Tooth], which operates the different conversions. It also contains another module, display
, used to format tooth for different
Usage
This crate is on crates.io and can be
used by adding dental_notation
to your dependencies in your project's Cargo.toml
.
[dependencies]
dental_notation = "1"
If you're using Rust 2015, then you'll also need to add it to your crate root:
extern crate dental_notation;
Dependencies
~125KB