-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (57 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
61 lines (57 loc) · 1.61 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "rust_keylock"
version = "0.18.0"
authors = ["aston <astonbitecode@gmail.com>"]
description = "A password manager with goals to be Secure, Simple to use, Portable and Extensible"
keywords = ["password", "manager", "safe", "encryption", "key"]
license = "GPL-3.0"
documentation = "https://rust-keylock.github.io/rust-keylock-lib/rust_keylock/"
repository = "https://github.com/rust-keylock/rust-keylock-lib"
homepage = "https://rust-keylock.github.io/"
readme = "README.md"
categories = ["cryptography", "authentication"]
edition = "2021"
[badges]
travis-ci = { repository = "rust-keylock/rust-keylock-lib", branch = "master" }
[lib]
name = "rust_keylock"
crate-type = ["rlib"]
[dependencies]
ctr = "0.9"
aes = "0.8"
sha2 = "0.10"
sha3 = "0.10"
hkdf = "0.12"
cipher = "0.5"
bcrypt = "0.19"
base64 = "0.22"
spake2 = "0.4"
rand = {version = "0.10", features = ["thread_rng"]}
log = "0.4"
secstr = "0.5"
aes-gcm = "0.10"
hyper = {version = "1", features = ["full"]}
hyper-util = { version = "0.1", features = ["full"] }
http-body-util = "0.1"
http = "1.4"
percent-encoding = "2.3"
url = "2.5"
futures = "0.3"
hyper-tls = {version = "0.6", features = ["vendored"]}
native-tls = "0.2"
xml-rs = "1.0"
openssl-probe = "0.2"
terminal-clipboard = "0.4"
dirs = "6.0"
tokio = { version = "1", features = ["full"] }
reqwest = "0.13"
serde_json = "1.0"
rs-password-utils = "0.2"
async-trait = "0.1"
zeroize = {version = "1.8", features = ["zeroize_derive"] }
serde = { version = "1.0", features = ["derive"] }
bytes = "1.11"
[dependencies.toml]
version = "1.1.0"
default-features = false
features = ["preserve_order", "display", "parse", "serde"]