-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 998 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 = "encrypt_static_html"
version = "0.3.0"
authors = ["Mathieu Guillame-Bert <[email protected]>"]
edition = "2021"
description = "A tool for encrypting a static HTML page, including its images and CSS, allowing for the page to be hosted securely on a static web server."
license = "Apache-2.0"
repository = "https://github.com/achoum/encrypt_static_html"
default-run = "encrypt_static_html"
[[bin]]
name = "encrypt_static_html"
path = "src/bin/cli.rs"
[[bin]]
name = "encrypt_static_html_ui"
path = "src/bin/ui.rs"
[dependencies]
aes = "0.8.4"
aes-gcm = "0.10.3"
anyhow = "1.0.86"
base64 = "0.22.1"
clap = { version = "4.5.13", features = ["derive"] }
handlebars = "6.0.0"
hex = "0.4.3"
hmac = "0.12.1"
#iced = { git = "https://github.com/iced-rs/iced.git", default-features = false }
iced = "0.12.1"
infer = "0.16.0"
pbkdf2 = "0.12.2"
rand = "0.8.5"
scraper = "0.20.0"
serde_json = "1.0.122"
sha2 = "0.10.8"
tempfile = "3.10.1"
url = "2.5.2"
[dev-dependencies]
rstest = "0.22.0"