feat: scaffold Cargo workspace with idfoto-core and idfoto-cli
This commit is contained in:
17
crates/idfoto-cli/Cargo.toml
Normal file
17
crates/idfoto-cli/Cargo.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[package]
|
||||
name = "idfoto-cli"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "CLI for idfoto password manager"
|
||||
|
||||
[[bin]]
|
||||
name = "idfoto"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
idfoto-core = { path = "../idfoto-core" }
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
anyhow = "1"
|
||||
rpassword = "5"
|
||||
arboard = "3"
|
||||
dirs = "5"
|
||||
3
crates/idfoto-cli/src/main.rs
Normal file
3
crates/idfoto-cli/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("idfoto v0.1.0");
|
||||
}
|
||||
Reference in New Issue
Block a user