bwtui/Cargo.toml

32 lines
708 B
TOML
Raw Normal View History

2019-12-21 22:47:46 +01:00
[package]
name = "bwtui"
2019-12-24 15:10:19 +01:00
version = "0.2.0"
2019-12-21 22:47:46 +01:00
authors = ["Christoph Heiss <contact@christoph-heiss.at>"]
edition = "2021"
2019-12-21 22:47:46 +01:00
license = "MIT"
categories = ["command-line-utilities"]
readme = "README.md"
repository = "https://github.com/christoph-heiss/bwtui"
2019-12-24 15:09:26 +01:00
description = "terminal-based vault browser for bitwarden"
2019-12-21 22:47:46 +01:00
[dependencies]
clipboard = "0.5.0"
cursive_buffered_backend = "0.6.0"
cursive_table_view = "0.14.0"
directories = "4.0.1"
2020-11-25 01:01:09 +01:00
fuzzy-matcher = "0.3.7"
serde_json = "1.0.83"
2019-12-21 22:47:46 +01:00
unicase = "2.6.0"
2019-12-24 15:09:26 +01:00
[dependencies.bitwarden]
path = "bitwarden"
2019-12-24 15:09:26 +01:00
[dependencies.cursive]
version = "0.19.0"
2019-12-24 15:09:26 +01:00
default-features = false
features = ["crossterm-backend"]
2019-12-24 15:09:26 +01:00
[dependencies.serde]
version = "1.0.142"
2019-12-24 15:09:26 +01:00
features = ["derive"]