-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (39 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (39 loc) · 1.25 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 = "urlshortener"
version = "0.1.0"
edition = "2024"
[dependencies]
# >=1.0.104 for RUSTSEC-2026-0190 (unsoundness in Error::downcast_mut).
anyhow = "1.0.104"
axum = { version = "0.8.4", features = ["macros"] }
axum-client-ip = "1.1.3"
axum-extra = { version = "0.10.1", features = ["typed-header"] }
chrono = "0.4.41"
# Maintained fork of `dotenv`, which is unmaintained (RUSTSEC-2021-0141).
dotenvy = "0.15.7"
http = "1.3.1"
# >=0.9.3 for RUSTSEC-2026-0097 (unsoundness when a custom logger uses rand::rng).
rand = "0.9.3"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
serde_yaml = "0.9.34"
# Round function for the Feistel permutation behind short codes. Must be a
# stable PRF: a hash that changed between releases would change the permutation
# and let the counter reissue a code it had already spent.
sha2 = "0.10.9"
tokio = { version = "1.45.0", features = ["full"] }
tower_governor = { version = "0.8.0", default-features = false, features = [
"axum",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.19", features = [
"env-filter",
"json",
"fmt",
] }
ua-parser = "0.2.1"
url = "2.5.7"
utoipa = "5.4.0"
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
ydb = "0.17.0"
ydb-grpc = "0.2.2"