split repository between CLI and librarry

This commit is contained in:
JOLIMAITRE Matthieu 2022-05-30 14:53:39 +03:00
parent cf133e462f
commit 618c6d57e8
15 changed files with 295 additions and 13 deletions

10
labirust-cli/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "labirust-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
labirust = { path = "../labirust" }
clap = { version = "3.1.18", features = ["derive"] }