-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (47 loc) · 1.54 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
# SPDX-FileCopyrightText: 2022 Harish Rajagopal <[email protected]>
#
# SPDX-License-Identifier: CC0-1.0
[package]
name = "dilbert-viewer"
version = "0.3.0"
edition = "2021"
description = "Simple viewer webpage for Dilbert by Scott Adams"
readme = "README.md"
repository = "https://github.com/rharish101/dilbert-viewer"
license = "AGPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-files = "0.6.0"
actix-web = "4.9.0"
askama = "0.12.0"
async-trait = "0.1.52"
awc = { version = "3.4.0", features = ["rustls-0_21"] }
chrono = { version = "0.4.19", features = ["serde", "std"], default-features = false }
deadpool-redis = "0.18.0"
futures = "0.3.19"
html-escape = "0.2.9"
minifier = "0.3.2"
minify-html = { version = "0.15.0", package = "minify-html-onepass" }
mockall_double = "0.3.0"
pin-project = "1.0.12"
portpicker = "0.1.1"
rand = "0.8.4"
redis = { version = "0.27.6", features = ["json", "tls-rustls-insecure", "tokio-rustls-comp"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.89"
thiserror = "2.0.9"
tl = "0.7.7"
tokio = { version = "1.24.2", features = ["fs"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
uuid = { version = "1.2.2", features = ["v4"] }
[profile.release]
lto = true
[dev-dependencies]
content-security-policy = "0.5.1"
deadpool = "0.12.1"
mockall = "0.13.1"
redis-test = { version = "0.6.0", features = ["aio"] }
test-case = "3.2.1"
wiremock = "0.6.2"