2024-07-18 20:37:52 +02:00
|
|
|
[package]
|
|
|
|
name = "jpassmenu"
|
|
|
|
description = "A simple program that uses dmenu compatible menu to select a password to type/copy"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-08 14:14:38 +01:00
|
|
|
clap = { version = "4.5.23", features = ["derive", "env"] }
|
2024-07-18 20:37:52 +02:00
|
|
|
duct = "0.13.7"
|
2024-12-08 14:14:38 +01:00
|
|
|
env_logger = "0.11.5"
|
|
|
|
ignore = "0.4.23"
|
2024-07-18 20:37:52 +02:00
|
|
|
log = "0.4.22"
|
2024-12-08 14:14:38 +01:00
|
|
|
miette = { version = "7.4.0", features = ["fancy"] }
|