Compare commits
8 Commits
2f12a548d5
...
feature/pr
| Author | SHA1 | Date | |
|---|---|---|---|
| 4475713a80 | |||
| 5e340a4402 | |||
| 0cf1b51be7 | |||
| dd516ac3d0 | |||
| df2a50ec25 | |||
| d07d529f05 | |||
| bbe70d60c0 | |||
| 0e8c3a4b52 |
15
.drone.yml
Normal file
15
.drone.yml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: publish
|
||||||
|
image: rust:slim
|
||||||
|
commands:
|
||||||
|
- /usr/bin/env cargo publish
|
||||||
|
environment:
|
||||||
|
CARGO_REGISTRY_TOKEN:
|
||||||
|
from_secret: cargo_token
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -66,7 +66,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dental-notation"
|
name = "dental-notation"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a3c00b2dc40e4c58d6bce550f3c415454be6fbc4b79024918cb40931828c88fb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"owo-colors",
|
"owo-colors",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -2,10 +2,11 @@
|
|||||||
name = "dental-notation-cli"
|
name = "dental-notation-cli"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
description = "Command-line tool used to parse and display tooth numbers"
|
||||||
repository = "https://git.barthes.xyz/guilhem/dental-notation-cli"
|
repository = "https://git.barthes.xyz/guilhem/dental-notation-cli"
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
categories = ["parsing", "command-line-utilities"]
|
categories = ["parsing", "command-line-utilities"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = {version = "3.2.5", features = [ "derive" ] }
|
clap = {version = "3.2.5", features = [ "derive" ] }
|
||||||
dental-notation = { path = ".." }
|
dental-notation = "1.0.0"
|
||||||
7
README.md
Normal file
7
README.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# Dental notation CLI
|
||||||
|
|
||||||
|
Small CLI tool used to operate on [dental-notation crate](https://crates.io/crates/dental-notation). The following features are for now available:
|
||||||
|
|
||||||
|
- Display a mouth in different notations
|
||||||
|
- Show a specific tooth in this mouth
|
||||||
|
- Convert between the different notations
|
||||||
Reference in New Issue
Block a user