-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
43 lines (36 loc) · 1.07 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
[package]
name = "extensible_encrypter"
version = "0.2.0"
authors = ["Michael de Silva <michael@crustyengineer.com>"]
repository = "https://github.com/bsodmike/extensible-encrypter-rs"
license = "MIT OR Apache-2.0"
description = "Extensible API for symmetric key encryption"
readme = "README.md"
edition = "2021"
publish = false
rust-version = "1.90.0"
[dependencies]
aes = { version = "0.9.0-rc.1" }
aes-gcm-siv = { version = "0.12.0-rc.1" }
base64 = "0.22.1"
hex = "^0.4"
hmac = "0.13.0-pre.4"
pbkdf2 = { version = "0.13.0-rc.0", features = ["simple"] }
password-hash = { version = "0.6.0-rc.0", features = ["rand_core"] }
sha2 = { version = "0.11.0-pre.4" }
thiserror = "^2.0"
rand = { version = "0.9.2", features = ["os_rng"] }
rand_chacha = { version = "0.9.0" }
# Logging support
tracing = "^0.1"
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
[dev-dependencies]
hex-literal = "^1.0"
prettytable-rs = "0.10.0"
tracing-test = "0.2.5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.release]
lto = true
codegen-units = 1