-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
49 lines (43 loc) · 1.15 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
[package]
name = "lumen"
description = "Lumen is an astronomically fast ShareX uploader written in Rust using the Actix Web framework."
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
codegen-units = 1
opt-level = 3
strip = "symbols"
lto = "fat"
debug-assertions = false
[dependencies]
actix-web = { version = "4.4.0", features = ["rustls"] }
aes-gcm-siv = "0.11.1"
serde = { version = "1.0.189", features = ["derive"] }
tokio = { version = "1.33.0", features = ["full"] }
sqlx = { version = "0.7", features = [
"runtime-tokio",
"tls-rustls",
"sqlite",
"chrono",
] }
chrono = { version = "0.4.31", features = ["serde"] }
uuid = { version = "1.4.1", features = ["v4"] }
base64 = "0.21.4"
sha3 = "0.10.8"
argon2 = "0.5.2"
dotenvy = "0.15.7"
anyhow = "1.0.75"
ureq = { version = "2.8.0", features = ["json"] }
log = "0.4.20"
pretty_env_logger = "0.5.0"
no-panic = "0.1.26"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
ureq = "2.8.0"
[[bench]]
name = "upload"
harness = false
[[bench]]
name = "download"
harness = false