-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 962 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
35
36
37
38
39
40
[package]
name = "extensible_encrypter"
version = "0.1.0"
authors = ["Michael de Silva <[email protected]>"]
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.84.1"
[dependencies]
# AES - Upgrading causes breakage
aes = { version = "^0.8" }
aes-gcm-siv = { version = "^0.11" }
base64 = "0.22.1"
hex = "^0.4"
hmac = "0.13.0-pre.4"
pbkdf2 = { version = "0.13.0-pre.1", features = ["simple"] }
sha2 = { version = "0.11.0-pre.4" }
thiserror = "^2.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