-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (43 loc) · 1 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
[package]
name = "voile-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-session = { version = "0.9.0", features = ["cookie-session"] }
actix-web = "4"
actix-files = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlite = "0.30"
askama = "0.11"
cached = "0.40"
env_logger = "0.10"
log = "0.4"
toml = "0.5"
home = "0.5"
actix-multipart = "0.5.0"
futures-util = "0.3.26"
rust-embed = "6.6.1"
mime_guess = { version = "2" }
zip = "0.6"
tempfile = "3"
dirs = "5.0"
toml_edit = "0.19"
path-absolutize = "3.1"
open = "4"
chardet = "0.2.4"
encoding = "0.2.33"
pdf = "0.8.1"
epub = "2.1.1"
sha2 = "0.9.9"
hex = "0.4.3"
uuid = { version = "1.6.1", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
] }
# Security update: https://github.com/hyperium/h2/pull/737
h2 = "0.3.24"
[[bin]]
name = "app"
path = "src/main.rs"