Refactor: Split project into library and binary crates

This commit is contained in:
Arkaprabha Chakraborty
2024-08-30 12:57:42 +05:30
parent a46ef2b053
commit 1be699fca4

View File

@@ -3,7 +3,13 @@ name = "rustcm-cli"
version = "0.1.3-alpha" version = "0.1.3-alpha"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib]
name = "rustcm_cli"
path = "src/lib.rs"
[[bin]]
name = "rustcm-cli"
path = "src/main.rs"
[dependencies] [dependencies]
orion = "0.17.5" orion = "0.17.5"