-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (32 loc) · 1008 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "bitwarden-autotype"
version = "0.1.6"
authors = ["MCOfficer <[email protected]>"]
license = "MIT"
description = "The missing desktop-autotype for Bitwarden."
homepage = "https://github.com/MCOfficer/bitwarden-autotype"
repository = "https://github.com/MCOfficer/bitwarden-autotype"
edition = "2018"
keywords = ["bitwarden", "autotype", "autofill", "passwords", "tool"]
exclude = ["*.xcf"]
build = "build.rs"
[dependencies]
anyhow = "1.0"
argh = "0.1"
chrono = { version = "0.4", features = ["serde"] }
fern = { version = "0.6", features = ["date-based"], default_features = false }
fltk = { version = "1.3", features = ["fltk-bundled"] }
lazy_static = "1.4"
log = "0.4"
parking_lot = "0.12"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
strfmt = "0.1"
trayicon = "0.1.3"
winapi = { version = "0.3", features = ["winuser", "psapi"], default_features = false }
win_key_codes = "0.1.2"
winput = "0.2"
[build-dependencies]
winres = "0.1"