-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 958 Bytes
/
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
[package]
name = "pufa-rs"
version = "1.3.0"
authors = ["Filipponik"]
edition = "2021"
description = "Today pufa word"
readme = "README.md"
repository = "https://github.com/Filipponik/pufa-rs"
keywords = ["axum-rs", "server", "web-server"]
categories = ["web-programming", "web-programming::http-server"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
[dependencies]
reqwest = "0.12.2"
tokio = { version = "1.32.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
regex = "1.10.4"
chrono = { version = "0.4.37", features = ["serde"] }
base64 = "0.22.0"
axum = "0.8.1"
thiserror = "2.0.11"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = "0.1.41"
once_cell = "1.20.3"
redis = { version = "0.28.2", features = ["aio", "tokio-comp"] }
serde_json = "1.0.138"