-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·60 lines (56 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
executable file
·60 lines (56 loc) · 1.74 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "url-shortener-ztm"
version = "0.26.0"
edition = "2024"
[[bin]]
name = "url-shortener-ztm"
path = "src/bin/main.rs"
[lib]
name = "url_shortener_ztm_lib"
[dependencies]
anyhow = "1.0.100"
argon2 = "0.5.3"
async-trait = "0.1.89"
axum = "0.8.6"
axum-extra = { version = "0.12.0", features = [ "typed-header", "cookie"] }
axum-macros = "0.5.0"
base64 = "0.22.1"
chrono = { version = "0.4.42", features = ["serde"] }
email_address = "0.2.9"
fastbloom-rs = "0.5.10"
figment = { version = "0.10.19", features = [ "env", "yaml" ] }
hex = "0.4.3"
hmac = "0.12.1"
jsonwebtoken = { version = "10.1.0", features = ["aws_lc_rs"] }
nanoid = "0.4.0"
num_cpus = "1.17.0"
parking_lot = "0.12.5"
rand = "0.9.2"
rand_core = "0.9.3"
resend-rs = "0.19.0"
secrecy = { version = "0.10.3", features = [ "serde" ] }
serde = { version = "1.0.226", features = ["derive"] }
serde-aux = "4.7.0"
serde_json = "1.0.143"
sha2 = "0.10.9"
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "tls-rustls", "postgres", "chrono", "uuid", "sqlite", "ipnetwork" ] }
tera = "1.20.1"
thiserror = "2.0.17"
time = "0.3.44"
tokio = { version = "1.48.0", features = [ "macros", "net", "rt-multi-thread", "signal" ] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = [ "fs", "request-id", "trace" ] }
tower_governor = "0.8.0"
tracing = { version = "0.1.41", features = ["log"] }
tracing-bunyan-formatter = "0.3.10"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = [ "registry", "env-filter" ] }
unicode-normalization = "0.1.25"
unicode-segmentation = "1.12.0"
url = "2.5.7"
uuid = { version = "1.17.0", features = ["v4", "serde"] }
zeroize = "1.8.2"
zxcvbn = "3.1.0"
[dev-dependencies]
regex = "1.12.2"
reqwest = { version = "0.12.24", features = [ "json" ] }