-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "fa"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["Ayush Gupta <work@isitayush.dev>"]
description = "A password manager that lives in your terminal."
readme = "README.md"
repository = "https://github.com/is-it-ayush/fa"
categories = ["command-line-utilities"]
keywords = ["cli", "password-manager", "tool"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
console = "0.15.8"
clap = { version = "4.4.14", features = ["derive", "cargo"] }
dialoguer = "0.11.0"
path-absolutize = "3.1.1"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
thiserror = "1.0.51"
toml = "0.8.8"
csv = "1.3.0"