-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.05 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
[package]
name = "cryptify"
version = "0.1.21"
authors = ["David Venhoek <david@tweedegolf.com>"]
edition = "2021"
repository = "https://github.com/encryption4all/cryptify"
license = "MIT"
description = "End-to-end encrypted file sharing service"
[dependencies]
askama = "0.14.0"
chrono = { version = "0.4.42", features = ["unstable-locales"] }
irma = "0.2.1"
lettre = "0.11.19"
log = "0.4.28"
qrcode = "0.14.1"
rand = "0.9.2"
reqwest = { version = "0.12.24", features = ["blocking", "json"] }
rocket = { version = "0.5.1", features = ["json"] }
rocket_cors = "0.6.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
sha2 = "0.10.9"
strum = "0.27.2"
strum_macros = "0.27.2"
tokio = "1.48.0"
uuid = { version = "1.18.1", features = ["v4"] }
url = "2.5.7"
tokio-util = { version = "0.7.17", features = ["compat"] }
pg-core = { version = "0.3.0-rc.0", features = ["rust", "stream"] }
minreq = { version = "2.14.1", features = ["json-using-serde", "https-native"]}
[profile.release]
lto = true
[profile.edge]
inherits = "release"
lto = false