bwtui/Cargo.toml

34 lines
771 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 = "2018"
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"
2020-11-25 01:01:09 +01:00
cursive_buffered_backend = "0.4.1"
directories = "3.0.1"
fuzzy-matcher = "0.3.7"
serde_json = "1.0.59"
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.15.0"
2019-12-24 15:09:26 +01:00
default-features = false
features = ["termion-backend"]
[dependencies.cursive_table_view]
git = "https://github.com/BonsaiDen/cursive_table_view.git"
2019-12-24 15:09:26 +01:00
[dependencies.serde]
2020-11-25 01:01:09 +01:00
version = "1.0.117"
2019-12-24 15:09:26 +01:00
features = ["derive"]