dental_notation/
lib.rs

1/*!
2This crate provides seralizing and deserializing from different text representation of dental notations. You can find the different available notation in the enum [NotationKind].
3
4It primarily exposes one struct, [Tooth], which operates the different conversions. It also contains another module, [`display`], used to format tooth for different
5# Usage
6
7This crate is [on crates.io](https://crates.io/crates/dental_notation) and can be
8used by adding `dental_notation` to your dependencies in your project's `Cargo.toml`.
9
10```toml
11[dependencies]
12dental_notation = "1"
13```
14
15If you're using Rust 2015, then you'll also need to add it to your crate root:
16
17```rust
18extern crate dental_notation;
19```
20
21*/
22
23#![no_std]
24extern crate alloc;
25
26pub mod display;
27pub mod tooth;
28#[doc(inline)]
29pub use tooth::*;