12 lines
441 B
TOML
12 lines
441 B
TOML
[package]
|
|
name = "dental-notation-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "CLI used to represent mouth in different tooth numbering systems and converting between these systems"
|
|
repository = "https://git.barthes.xyz/guilhem/dental-notation-cli"
|
|
license = "GPL-3.0-or-later"
|
|
categories = ["parsing", "command-line-utilities"]
|
|
|
|
[dependencies]
|
|
clap = {version = "3.2.5", features = [ "derive" ] }
|
|
dental-notation = { path = ".." } |